Completed
Push — master ( efb233...18007d )
by Sébastien
03:25
created
src/Event/Dispatcher.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Sebdesign\SM\Event;
4 4
 
5
+use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
5 6
 use Symfony\Component\EventDispatcher\Event;
6 7
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
7 8
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
8
-use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
9 9
 
10 10
 class Dispatcher implements EventDispatcherInterface
11 11
 {
Please login to merge, or discard this patch.
src/ServiceProvider.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
     /**
106 106
      * Get the services provided by the provider.
107 107
      *
108
-     * @return array
108
+     * @return string[]
109 109
      */
110 110
     public function provides()
111 111
     {
Please login to merge, or discard this patch.
Unused Use Statements   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,17 +2,17 @@
 block discarded – undo
2 2
 
3 3
 namespace Sebdesign\SM;
4 4
 
5
-use Sebdesign\SM\Commands\Debug;
6
-use SM\Factory\FactoryInterface;
7
-use Sebdesign\SM\Factory\Factory;
8
-use Sebdesign\SM\Event\Dispatcher;
5
+use Illuminate\Foundation\Application as LaravelApplication;
6
+use Illuminate\Support\ServiceProvider as BaseServiceProvider;
7
+use Laravel\Lumen\Application as LumenApplication;
9 8
 use SM\Callback\CallbackFactoryInterface;
10 9
 use SM\Callback\CascadeTransitionCallback;
10
+use SM\Factory\FactoryInterface;
11 11
 use Sebdesign\SM\Callback\ContainerAwareCallback;
12
-use Laravel\Lumen\Application as LumenApplication;
13 12
 use Sebdesign\SM\Callback\ContainerAwareCallbackFactory;
14
-use Illuminate\Foundation\Application as LaravelApplication;
15
-use Illuminate\Support\ServiceProvider as BaseServiceProvider;
13
+use Sebdesign\SM\Commands\Debug;
14
+use Sebdesign\SM\Event\Dispatcher;
15
+use Sebdesign\SM\Factory\Factory;
16 16
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
17 17
 
18 18
 class ServiceProvider extends BaseServiceProvider
Please login to merge, or discard this patch.