1 | <?php |
||
8 | abstract class AbstractBackendInterface implements BackendInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $identifier; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $type; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $className; |
||
24 | |||
25 | /** |
||
26 | * @var array |
||
27 | */ |
||
28 | protected $configuration; |
||
29 | |||
30 | /** |
||
31 | * @var Status |
||
32 | */ |
||
33 | protected $status; |
||
34 | |||
35 | /** |
||
36 | * @var |
||
37 | */ |
||
38 | private $backend; |
||
39 | |||
40 | /** |
||
41 | * @param string $identifier |
||
42 | * @param string $className |
||
43 | * @param array $configuration |
||
44 | */ |
||
45 | public function __construct(string $identifier, string $className, array $configuration) |
||
51 | |||
52 | /** |
||
53 | * @return string |
||
54 | */ |
||
55 | public function getIdentifier(): string |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getType(): string |
||
67 | |||
68 | /** |
||
69 | * @return string |
||
70 | */ |
||
71 | public function getClassName(): string |
||
75 | |||
76 | /** |
||
77 | * @return array |
||
78 | */ |
||
79 | public function getConfiguration(): array |
||
83 | |||
84 | /** |
||
85 | * @return string |
||
86 | */ |
||
87 | public function getStatus(): string |
||
91 | |||
92 | public function getBackend() |
||
96 | } |
||
97 |