1 | <?php |
||
15 | class DummyBridge implements BridgeInterface |
||
16 | { |
||
17 | |||
18 | /** @var LoggerInterface */ |
||
19 | private $oLogger; |
||
20 | |||
21 | public function __construct( |
||
27 | |||
28 | /** |
||
29 | * @return JobEntityInterface[] |
||
30 | */ |
||
31 | public function getJobs() |
||
35 | |||
36 | /** |
||
37 | * @param JobEntityInterface $oJobEntity |
||
38 | * @return bool |
||
39 | */ |
||
40 | public function addJob(JobEntityInterface $oJobEntity) |
||
45 | |||
46 | /** |
||
47 | * @param JobEntityInterface $oJobEntity |
||
48 | * @return bool |
||
49 | */ |
||
50 | public function updateJob(JobEntityInterface $oJobEntity) |
||
55 | |||
56 | /** |
||
57 | * @param JobEntityInterface $oJobEntity |
||
58 | * @return bool |
||
59 | */ |
||
60 | public function removeJob(JobEntityInterface $oJobEntity) |
||
65 | } |
||
66 |