--- a/server/src/app/Providers/EventServiceProvider.php Mon Jun 15 19:30:32 2015 +0200
+++ b/server/src/app/Providers/EventServiceProvider.php Tue Jun 23 17:01:39 2015 +0200
@@ -1,32 +1,32 @@
-<?php namespace App\Providers;
+<?php
+
+namespace CorpusParole\Providers;
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
-class EventServiceProvider extends ServiceProvider {
-
- /**
- * The event handler mappings for the application.
- *
- * @var array
- */
- protected $listen = [
- 'event.name' => [
- 'EventListener',
- ],
- ];
+class EventServiceProvider extends ServiceProvider
+{
+ /**
+ * The event handler mappings for the application.
+ *
+ * @var array
+ */
+ protected $listen = [
+ 'event.name' => [
+ 'EventListener',
+ ],
+ ];
- /**
- * Register any other events for your application.
- *
- * @param \Illuminate\Contracts\Events\Dispatcher $events
- * @return void
- */
- public function boot(DispatcherContract $events)
- {
- parent::boot($events);
+ /**
+ * Register any other events for your application.
+ *
+ * @param \Illuminate\Contracts\Events\Dispatcher $events
+ */
+ public function boot(DispatcherContract $events)
+ {
+ parent::boot($events);
- //
- }
-
+ //
+ }
}