PhpSpec\Formatter\Presenter\Differ\ObjectEngine::supports PHP Method

supports() public method

public supports ( mixed $expected, mixed $actual ) : boolean
$expected mixed
$actual mixed
return boolean
    public function supports($expected, $actual)
    {
        return is_object($expected) && is_object($actual);
    }