1 | <?php |
||
19 | class AndRelation implements RelationInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var RelationInterface[] |
||
23 | */ |
||
24 | private $relations; |
||
25 | |||
26 | /** |
||
27 | * @param RelationInterface[] $relations |
||
28 | */ |
||
29 | public function __construct($relations = []) |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function isRelated($name) |
||
47 | |||
48 | /** |
||
49 | * @param RelationInterface $relation |
||
50 | */ |
||
51 | public function addRelation(RelationInterface $relation = null) |
||
55 | } |
||
56 |