1 | <?php |
||
14 | class DummyBridge implements BridgeInterface |
||
15 | { |
||
16 | |||
17 | /** @var LoggerInterface */ |
||
18 | private $logger; |
||
19 | |||
20 | public function __construct( |
||
25 | |||
26 | /** |
||
27 | * @return JobEntityInterface[] |
||
28 | */ |
||
29 | public function getJobs() |
||
33 | |||
34 | /** |
||
35 | * @param JobEntityInterface $jobEntity |
||
36 | * @return bool |
||
37 | */ |
||
38 | public function addJob(JobEntityInterface $jobEntity) |
||
43 | |||
44 | /** |
||
45 | * @param JobEntityInterface $jobEntity |
||
46 | * @return bool |
||
47 | */ |
||
48 | public function updateJob(JobEntityInterface $jobEntity) |
||
53 | |||
54 | /** |
||
55 | * @param JobEntityInterface $jobEntity |
||
56 | * @return bool |
||
57 | */ |
||
58 | public function removeJob(JobEntityInterface $jobEntity) |
||
63 | } |
||
64 |