| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class EcondaToLocaleFacadeBridge implements EcondaToLocaleFacadeInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var \Spryker\Zed\Locale\Business\LocaleFacadeInterface |
||
| 14 | */ |
||
| 15 | protected $localeFacade; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param \Spryker\Zed\Locale\Business\LocaleFacadeInterface $localeFacade |
||
| 19 | */ |
||
| 20 | public function __construct($localeFacade) |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return \Generated\Shared\Transfer\LocaleTransfer |
||
|
|
|||
| 27 | */ |
||
| 28 | public function getCurrentLocale() |
||
| 29 | { |
||
| 30 | return $this->localeFacade->getCurrentLocale(); |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param string $localeName |
||
| 35 | * |
||
| 36 | * @return \Generated\Shared\Transfer\LocaleTransfer |
||
| 37 | */ |
||
| 38 | public function getLocale($localeName) |
||
| 41 | } |
||
| 42 | } |
||
| 43 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths