From 1a9dcae376ad20232c454260f68e37c08dc1c042 Mon Sep 17 00:00:00 2001 From: luke83 Date: Wed, 9 Nov 2016 19:13:42 +0100 Subject: [PATCH] strict not equal --- src/Console/ShellDispatcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/ShellDispatcher.php b/src/Console/ShellDispatcher.php index 711879c31c6..9e316965c24 100644 --- a/src/Console/ShellDispatcher.php +++ b/src/Console/ShellDispatcher.php @@ -274,7 +274,7 @@ public function addShortPluginAliases() $other = static::alias($shell); if ($other) { $other = $aliases[$shell]; - if ($other != $plugin) { + if ($other !== $plugin) { Log::write( 'debug', "command '$shell' in plugin '$plugin' was not aliased, conflicts with '$other'",