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 c4a6a16 + 1316e5c commit 70f3d79Copy full SHA for 70f3d79
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