1 | <?php |
||
17 | class DefaultConfiguration implements ConnectionConfigurationInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var IntegrationConnection |
||
21 | */ |
||
22 | protected $connection; |
||
23 | |||
24 | /** |
||
25 | * @inheritdoc |
||
26 | */ |
||
27 | public function __construct(IntegrationConnection $connection) |
||
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | public static function displayName(): string |
||
39 | |||
40 | /** |
||
41 | * @return bool |
||
42 | */ |
||
43 | public function save(): bool |
||
47 | |||
48 | /** |
||
49 | * @return bool |
||
50 | */ |
||
51 | public function delete(): bool |
||
55 | |||
56 | /** |
||
57 | * @inheritdoc |
||
58 | */ |
||
59 | public function getSettingsHtml(): string |
||
63 | } |
||
64 |