diff --git a/src/Illuminate/Events/Dispatcher.php b/src/Illuminate/Events/Dispatcher.php index abcdffd2f318..86796be3df3d 100644 --- a/src/Illuminate/Events/Dispatcher.php +++ b/src/Illuminate/Events/Dispatcher.php @@ -107,7 +107,7 @@ public function createClassListener($listener) return function(SymfonyEvent $event) use ($listener, $container) { - // If the listener has a colon, we will assume it is being used to delimit + // If the listener has an @ sign, we will assume it is being used to delimit // the class name from the handle method name. This allows for handlers // to run multiple handler methods in a single class for convenience. $segments = explode('@', $listener); @@ -118,4 +118,4 @@ public function createClassListener($listener) }; } -} \ No newline at end of file +}