1 | <?php |
||
13 | class PipelineService extends BaseService |
||
14 | { |
||
15 | /** |
||
16 | * @var array Pipeline |
||
17 | */ |
||
18 | protected $entities = []; |
||
19 | |||
20 | /** |
||
21 | * @param Pipeline $pipeline |
||
22 | */ |
||
23 | 3 | public function add(EntityInterface $pipeline) |
|
29 | |||
30 | /** |
||
31 | * @param $array |
||
32 | * @return Pipeline |
||
33 | */ |
||
34 | 3 | public function parseArrayToEntity($array) |
|
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | 3 | protected function getLink() |
|
49 | } |