Completed
Pull Request — master (#7)
by frey
03:41 queued 50s
created
src/Foundation/ServiceProviders/UserServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,19 +24,19 @@
 block discarded – undo
24 24
      */
25 25
     public function register(Container $pimple)
26 26
     {
27
-        $pimple['user'] = function ($pimple) {
27
+        $pimple['user'] = function($pimple) {
28 28
             return new User($pimple['access_token']);
29 29
         };
30 30
 
31
-        $department = function ($pimple) {
31
+        $department = function($pimple) {
32 32
             return new Department($pimple['access_token']);
33 33
         };
34 34
 
35
-        $tag = function ($pimple) {
35
+        $tag = function($pimple) {
36 36
             return new Tag($pimple['access_token']);
37 37
         };
38 38
 
39
-        $batch = function ($pimple) {
39
+        $batch = function($pimple) {
40 40
             return new Batch($pimple['access_token']);
41 41
         };
42 42
 
Please login to merge, or discard this patch.