We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7e43b6 + 70f3d79 commit 01459ccCopy full SHA for 01459cc
dev/tests/static/framework/Magento/CodeMessDetector/Rule/Design/AllPurposeAction.php
@@ -27,6 +27,10 @@ class AllPurposeAction extends AbstractRule implements ClassAware
27
*/
28
public function apply(AbstractNode $node)
29
{
30
+ // Skip validation for Abstract Controllers
31
+ if ($node->isAbstract()) {
32
+ return;
33
+ }
34
try {
35
$impl = class_implements($node->getFullQualifiedName(), true);
36
} catch (\Throwable $exception) {
0 commit comments