1 | <?php |
||
10 | class PayloadInNamespace implements SpecificationInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $namespace; |
||
16 | |||
17 | /** |
||
18 | * @param string $namespace |
||
19 | */ |
||
20 | public function __construct($namespace) |
||
25 | |||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | public function isSatisfiedBy(DomainMessage $domainMessage) |
||
35 | |||
36 | /** |
||
37 | * @param string $namespace |
||
38 | * @return string |
||
39 | */ |
||
40 | private function appendNamespaceSeparator($namespace) |
||
48 | } |
||
49 |