for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Zed\Econda\Dependency\Facade;
class EcondaToPropelFacadeBridge implements EcondaToPropelFacadeInterface
{
* @var \Spryker\Zed\Propel\Business\PropelFacadeInterface
protected $propelFacade;
* @param \Spryker\Zed\Propel\Business\PropelFacadeInterface $propelFacade
public function __construct($propelFacade)
$this->propelFacade = $propelFacade;
}
* @return string
public function getCurrentDatabaseEngineName(): string
return $this->propelFacade->getCurrentDatabaseEngineName();
Spryker\Zed\Propel\Busin...entDatabaseEngineName()
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
ignore-deprecated
return /** @scrutinizer ignore-deprecated */ $this->propelFacade->getCurrentDatabaseEngineName();
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.
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.