Skip to content

Commit

Permalink
Suppress magento-coding-standard error
Browse files Browse the repository at this point in the history
  • Loading branch information
vovayatsyuk committed May 31, 2019
1 parent 6c6e546 commit c6c9d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/Module/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public function getUpgradeFiles()
*/
public function resolve($filename)
{
require_once $this->getUpgradesDir() . "/{$filename}.php";
require_once $this->getUpgradesDir() . "/{$filename}.php"; // phpcs:ignore

$className = implode(' ', array_slice(explode('_', $filename), 1));
$className = str_replace(' ', '', ucwords($className));
Expand Down

0 comments on commit c6c9d39

Please sign in to comment.