1 | <?php |
||
10 | class SetterStrategy implements InjectionStrategyInterface |
||
11 | { |
||
12 | private $setter; |
||
13 | |||
14 | 8 | public function __construct() |
|
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 6 | public function supports($object, string $property, $value): bool |
|
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 3 | public function inject($object, string $property, $value) |
|
43 | } |
||
44 |