ObjectStateToken.php in Zircon Profile 8
File
vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php
View source
<?php
namespace Prophecy\Argument\Token;
use SebastianBergmann\Comparator\ComparisonFailure;
use Prophecy\Comparator\Factory as ComparatorFactory;
use Prophecy\Util\StringUtil;
class ObjectStateToken implements TokenInterface {
private $name;
private $value;
private $util;
private $comparatorFactory;
public function __construct($methodName, $value, StringUtil $util = null, ComparatorFactory $comparatorFactory = null) {
$this->name = $methodName;
$this->value = $value;
$this->util = $util ?: new StringUtil();
$this->comparatorFactory = $comparatorFactory ?: ComparatorFactory::getInstance();
}
public function scoreArgument($argument) {
if (is_object($argument) && method_exists($argument, $this->name)) {
$actual = call_user_func(array(
$argument,
$this->name,
));
$comparator = $this->comparatorFactory
->getComparatorFor($actual, $this->value);
try {
$comparator
->assertEquals($actual, $this->value);
return 8;
} catch (ComparisonFailure $failure) {
return false;
}
}
if (is_object($argument) && property_exists($argument, $this->name)) {
return $argument->{$this->name} === $this->value ? 8 : false;
}
return false;
}
public function isLast() {
return false;
}
public function __toString() {
return sprintf('state(%s(), %s)', $this->name, $this->util
->stringify($this->value));
}
}