1 | <?php |
||
15 | abstract class AbstractType |
||
16 | { |
||
17 | /** |
||
18 | * @var \Gabrieljmj\Should\ShouldInterface |
||
19 | */ |
||
20 | protected $should; |
||
21 | |||
22 | /** |
||
23 | * @param string $property |
||
24 | * @param mixed $value |
||
25 | */ |
||
26 | public function __set($property, $value) |
||
34 | |||
35 | /** |
||
36 | * @param \Gabrieljmj\Should\ShouldInterface $should |
||
37 | */ |
||
38 | protected function setShould(ShouldInterface $should) |
||
42 | } |