Eloquent\Phony\Matcher\EqualToMatcher::__construct PHP Метод

__construct() публичный Метод

Construct a new equal to matcher.
public __construct ( mixed $value, boolean $useSubstitution, Eloquent\Phony\Exporter\Exporter $exporter )
$value mixed The value to check against.
$useSubstitution boolean True to use substitution for wrapper types.
$exporter Eloquent\Phony\Exporter\Exporter The exporter to use.
    public function __construct($value, $useSubstitution, Exporter $exporter)
    {
        $this->value = $value;
        $this->useSubstitution = $useSubstitution;
        $this->exporter = $exporter;
    }