| 1 | <?php |
||
| 19 | class ConfigInit implements SignalInterface |
||
| 20 | { |
||
| 21 | |||
| 22 | private $config = []; |
||
| 23 | private $connectionId = ''; |
||
| 24 | |||
| 25 | public function __construct(&$config, $connectionId = Mangan::DefaultConnectionId) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Get connection id for which current signal is emitted |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function getConnectionId() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Merge supplied configuration with Mangan configuration. |
||
| 42 | * @param array $configuration |
||
| 43 | * @return |
||
| 44 | */ |
||
| 45 | public function apply($configuration) |
||
| 50 | |||
| 51 | } |
||
| 52 |