| 1 | <?php |
||
| 18 | class EvaluateContext implements Context |
||
| 19 | { |
||
| 20 | private $actual; |
||
| 21 | private $negated; |
||
| 22 | private $factory; |
||
| 23 | private $reporter; |
||
| 24 | |||
| 25 | public function __construct(MatcherFactory $factory, ResultReporter $reporter) |
||
| 32 | |||
| 33 | public function actual($actual) |
||
| 39 | |||
| 40 | public function not() |
||
| 46 | |||
| 47 | public function evaluate($name, $arguments = []) |
||
| 60 | |||
| 61 | public function __call($name, $arguments = []) |
||
| 69 | } |
||
| 70 |