We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 595daf5 commit d7a27e3Copy full SHA for d7a27e3
src/Console/Installer.php
@@ -83,8 +83,9 @@ public static function postInstall(Event $event)
83
84
static::setSecuritySalt($rootDir, $io);
85
86
- if (class_exists('\Cake\Codeception\Console\Installer')) {
87
- \Cake\Codeception\Console\Installer::customizeCodeceptionBinary($event);
+ $class = 'Cake\Codeception\Console\Installer';
+ if (class_exists($class)) {
88
+ $class::customizeCodeceptionBinary($event);
89
}
90
91
0 commit comments