We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5112890 commit f534a6fCopy full SHA for f534a6f
src/Commands/DiscoverClasses.php
@@ -41,7 +41,7 @@ public function run(array $params)
41
$methods = $this->_getMethodsFromCLass($class);
42
43
foreach ($methods as $key => $value) {
44
- if ($value[0] == '_') {
+ if ($value[0] == '_' || $value == 'initController') {
45
unset($methods[$key]);
46
}
47
0 commit comments