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 81f8bc8 commit c04d78eCopy full SHA for c04d78e
inc/Action/AbstractAction.php
@@ -29,7 +29,7 @@ public function __construct($actionname = '')
29
} else {
30
// As of PHP 8 this seems to be the fastest way to get the name:
31
$n = explode('\\', get_class($this));
32
- $this->actionname = array_pop($n);
+ $this->actionname = strtolower(array_pop($n));
33
}
34
35
0 commit comments