1 | <?php |
||
5 | class MethodAggregateIdExtractor implements AggregateIdExtractorInterface |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $method; |
||
11 | |||
12 | /** |
||
13 | * @param string $method |
||
14 | */ |
||
15 | 15 | public function __construct($method) |
|
19 | |||
20 | /** |
||
21 | * @param object $aggregate |
||
22 | * @return string |
||
23 | */ |
||
24 | 9 | public function extract($aggregate) |
|
31 | } |
||
32 |