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.
1 parent c2e834d commit 6a2b1e8Copy full SHA for 6a2b1e8
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