diff --git a/src/Illuminate/Foundation/Console/ListenerMakeCommand.php b/src/Illuminate/Foundation/Console/ListenerMakeCommand.php index 31bef173ac13..d5589ece59a9 100644 --- a/src/Illuminate/Foundation/Console/ListenerMakeCommand.php +++ b/src/Illuminate/Foundation/Console/ListenerMakeCommand.php @@ -104,7 +104,7 @@ protected function getStub() */ protected function alreadyExists($rawName) { - return class_exists($rawName); + return class_exists($this->qualifyClass($rawName)); } /**