Completed
Branch master (62e173)
by Hugo
11:36 queued 05:29
created
src/Eloquent/EloquentServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,23 +30,23 @@
 block discarded – undo
30 30
      */
31 31
     protected function registerContainerBindings(Container $container)
32 32
     {
33
-        $container->bind(AccessTokenStorage::class, function () {
33
+        $container->bind(AccessTokenStorage::class, function() {
34 34
             return new AccessTokenStorage;
35 35
         });
36 36
 
37
-        $container->bind(ClientStorage::class, function () {
37
+        $container->bind(ClientStorage::class, function() {
38 38
             return new ClientStorage;
39 39
         });
40 40
 
41
-        $container->bind(RefreshTokenStorage::class, function () {
41
+        $container->bind(RefreshTokenStorage::class, function() {
42 42
             return new RefreshTokenStorage;
43 43
         });
44 44
 
45
-        $container->bind(ScopeStorage::class, function () {
45
+        $container->bind(ScopeStorage::class, function() {
46 46
             return new ScopeStorage;
47 47
         });
48 48
 
49
-        $container->bind(SessionStorage::class, function () {
49
+        $container->bind(SessionStorage::class, function() {
50 50
             return new SessionStorage;
51 51
         });
52 52
 
Please login to merge, or discard this patch.
src/Doctrine/DoctrineServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,23 +33,23 @@
 block discarded – undo
33 33
     {
34 34
         $entityManager = $container->make(EntityManagerInterface::class);
35 35
 
36
-        $container->bind(AccessTokenStorage::class, function () use ($entityManager) {
36
+        $container->bind(AccessTokenStorage::class, function() use ($entityManager) {
37 37
             return new AccessTokenStorage($entityManager);
38 38
         });
39 39
 
40
-        $container->bind(ClientStorage::class, function () use ($entityManager) {
40
+        $container->bind(ClientStorage::class, function() use ($entityManager) {
41 41
             return new ClientStorage($entityManager);
42 42
         });
43 43
 
44
-        $container->bind(RefreshTokenStorage::class, function () use ($entityManager) {
44
+        $container->bind(RefreshTokenStorage::class, function() use ($entityManager) {
45 45
             return new RefreshTokenStorage($entityManager);
46 46
         });
47 47
 
48
-        $container->bind(ScopeStorage::class, function () use ($entityManager) {
48
+        $container->bind(ScopeStorage::class, function() use ($entityManager) {
49 49
             return new ScopeStorage($entityManager);
50 50
         });
51 51
 
52
-        $container->bind(SessionStorage::class, function () use ($entityManager) {
52
+        $container->bind(SessionStorage::class, function() use ($entityManager) {
53 53
             return new SessionStorage($entityManager);
54 54
         });
55 55
 
Please login to merge, or discard this patch.
src/OAuth2ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     protected function registerBindings(Container $container, ConfigRepository $config)
44 44
     {
45
-        $container->bind(OAuth2Service::class, function ($container) use ($config) {
45
+        $container->bind(OAuth2Service::class, function($container) use ($config) {
46 46
             return $this->createService($container, $config[self::CONFIG_KEY]);
47 47
         });
48 48
 
Please login to merge, or discard this patch.