Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class EcondaToPropelFacadeBridge implements EcondaToPropelFacadeInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var \Spryker\Zed\Propel\Business\PropelFacadeInterface |
||
14 | */ |
||
15 | protected $propelFacade; |
||
16 | |||
17 | /** |
||
18 | * @param \Spryker\Zed\Propel\Business\PropelFacadeInterface $propelFacade |
||
19 | */ |
||
20 | public function __construct($propelFacade) |
||
21 | { |
||
22 | $this->propelFacade = $propelFacade; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getCurrentDatabaseEngineName(): string |
||
31 | } |
||
32 | } |
||
33 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.