Skip to content

Commit

Permalink
strict not equal
Browse files Browse the repository at this point in the history
  • Loading branch information
luke83 committed Nov 9, 2016
1 parent e6b9afd commit 1a9dcae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/ShellDispatcher.php
Expand Up @@ -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'",
Expand Down

0 comments on commit 1a9dcae

Please sign in to comment.