Skip to content

Commit 006f999

Browse files
committed
formatting
1 parent 01331d7 commit 006f999

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

src/Illuminate/Foundation/Events/DiscoverEvents.php

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,11 @@ class DiscoverEvents
1919
*/
2020
public static function within($listenerPath, $basePath)
2121
{
22-
return collect(static::getListenerEvents((new Finder)
23-
->files()
24-
->in($listenerPath), $basePath))
25-
->mapToDictionary(function ($event, $listener) {
26-
return [$event => $listener];
27-
})->all();
22+
return collect(static::getListenerEvents(
23+
(new Finder)->files()->in($listenerPath), $basePath
24+
))->mapToDictionary(function ($event, $listener) {
25+
return [$event => $listener];
26+
})->all();
2827
}
2928

3029
/**

0 commit comments

Comments
 (0)