From 6399e8f8762f3382275c5fca5a28a61aadb45d48 Mon Sep 17 00:00:00 2001 From: Jesse O'Brien Date: Fri, 11 Jan 2013 10:35:40 -0500 Subject: [PATCH] Update src/Illuminate/Events/Dispatcher.php It said colon, but it should be @ sign :) --- src/Illuminate/Events/Dispatcher.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}