クラス名に使用できない単語があります。
基本的には予約済みのPHPの言葉が好きでnew
、public
、static
、...
これを克服し、URLでこれらの単語を許可するためAction
に、クラスがオートロードされるときにMagentoはサフィックスを追加します。
この手段new
にマップNewAction.php
、public
へPublicAction.php
。
クラス\Magento\Framework\App\Router\ActionList
(2.3ブランチ)で、この動作を持つ単語のリストを見つけることができます。
protected $reservedWords = [
'abstract', 'and', 'array', 'as', 'break', 'callable', 'case', 'catch', 'class', 'clone', 'const',
'continue', 'declare', 'default', 'die', 'do', 'echo', 'else', 'elseif', 'empty', 'enddeclare',
'endfor', 'endforeach', 'endif', 'endswitch', 'endwhile', 'eval', 'exit', 'extends', 'final',
'for', 'foreach', 'function', 'global', 'goto', 'if', 'implements', 'include', 'instanceof',
'insteadof','interface', 'isset', 'list', 'namespace', 'new', 'or', 'print', 'private', 'protected',
'public', 'require', 'return', 'static', 'switch', 'throw', 'trait', 'try', 'unset', 'use', 'var',
'while', 'xor',
];
そして、ここでのコードで変更するnew
にはNewAction
。