Completed
Pull Request — develop (#1810)
by
unknown
18:58
created
vendor/illuminate/contracts/Notifications/Factory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      * @param  string|null  $name
11 11
      * @return mixed
12 12
      */
13
-    public function channel($name = null);
13
+    public function channel( $name = null );
14 14
 
15 15
     /**
16 16
      * Send the given notification to the given notifiable entities.
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      * @param  mixed  $notification
20 20
      * @return void
21 21
      */
22
-    public function send($notifiables, $notification);
22
+    public function send( $notifiables, $notification );
23 23
 
24 24
     /**
25 25
      * Send the given notification immediately.
@@ -28,5 +28,5 @@  discard block
 block discarded – undo
28 28
      * @param  mixed  $notification
29 29
      * @return void
30 30
      */
31
-    public function sendNow($notifiables, $notification);
31
+    public function sendNow( $notifiables, $notification );
32 32
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Http/Kernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      * @param  \Symfony\Component\HttpFoundation\Request  $request
18 18
      * @return \Symfony\Component\HttpFoundation\Response
19 19
      */
20
-    public function handle($request);
20
+    public function handle( $request );
21 21
 
22 22
     /**
23 23
      * Perform any final actions for the request lifecycle.
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      * @param  \Symfony\Component\HttpFoundation\Response  $response
27 27
      * @return void
28 28
      */
29
-    public function terminate($request, $response);
29
+    public function terminate( $request, $response );
30 30
 
31 31
     /**
32 32
      * Get the Laravel application instance.
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Queue/Monitor.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      * @param  mixed  $callback
11 11
      * @return void
12 12
      */
13
-    public function looping($callback);
13
+    public function looping( $callback );
14 14
 
15 15
     /**
16 16
      * Register a callback to be executed when a job fails after the maximum amount of retries.
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      * @param  mixed  $callback
19 19
      * @return void
20 20
      */
21
-    public function failing($callback);
21
+    public function failing( $callback );
22 22
 
23 23
     /**
24 24
      * Register a callback to be executed when a daemon queue is stopping.
@@ -26,5 +26,5 @@  discard block
 block discarded – undo
26 26
      * @param  mixed  $callback
27 27
      * @return void
28 28
      */
29
-    public function stopping($callback);
29
+    public function stopping( $callback );
30 30
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Queue/EntityNotFoundException.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
      * @param  mixed  $id
14 14
      * @return void
15 15
      */
16
-    public function __construct($type, $id)
16
+    public function __construct( $type, $id )
17 17
     {
18
-        $id = (string) $id;
18
+        $id = (string)$id;
19 19
 
20
-        parent::__construct("Queueable entity [{$type}] not found for ID [{$id}].");
20
+        parent::__construct( "Queueable entity [{$type}] not found for ID [{$id}]." );
21 21
     }
22 22
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Queue/EntityResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,5 +11,5 @@
 block discarded – undo
11 11
      * @param  mixed  $id
12 12
      * @return mixed
13 13
      */
14
-    public function resolve($type, $id);
14
+    public function resolve( $type, $id );
15 15
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Routing/BindingRegistrar.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      * @param  string|callable  $binder
12 12
      * @return void
13 13
      */
14
-    public function bind($key, $binder);
14
+    public function bind( $key, $binder );
15 15
 
16 16
     /**
17 17
      * Get the binding callback for a given binding.
@@ -19,5 +19,5 @@  discard block
 block discarded – undo
19 19
      * @param  string  $key
20 20
      * @return \Closure
21 21
      */
22
-    public function getBindingCallback($key);
22
+    public function getBindingCallback( $key );
23 23
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Auth/Guard.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      * @param  array  $credentials
39 39
      * @return bool
40 40
      */
41
-    public function validate(array $credentials = []);
41
+    public function validate( array $credentials = [ ] );
42 42
 
43 43
     /**
44 44
      * Set the current user.
@@ -46,5 +46,5 @@  discard block
 block discarded – undo
46 46
      * @param  \Illuminate\Contracts\Auth\Authenticatable  $user
47 47
      * @return void
48 48
      */
49
-    public function setUser(Authenticatable $user);
49
+    public function setUser( Authenticatable $user );
50 50
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Auth/UserProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      * @param  mixed  $identifier
11 11
      * @return \Illuminate\Contracts\Auth\Authenticatable|null
12 12
      */
13
-    public function retrieveById($identifier);
13
+    public function retrieveById( $identifier );
14 14
 
15 15
     /**
16 16
      * Retrieve a user by their unique identifier and "remember me" token.
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      * @param  string  $token
20 20
      * @return \Illuminate\Contracts\Auth\Authenticatable|null
21 21
      */
22
-    public function retrieveByToken($identifier, $token);
22
+    public function retrieveByToken( $identifier, $token );
23 23
 
24 24
     /**
25 25
      * Update the "remember me" token for the given user in storage.
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      * @param  string  $token
29 29
      * @return void
30 30
      */
31
-    public function updateRememberToken(Authenticatable $user, $token);
31
+    public function updateRememberToken( Authenticatable $user, $token );
32 32
 
33 33
     /**
34 34
      * Retrieve a user by the given credentials.
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      * @param  array  $credentials
37 37
      * @return \Illuminate\Contracts\Auth\Authenticatable|null
38 38
      */
39
-    public function retrieveByCredentials(array $credentials);
39
+    public function retrieveByCredentials( array $credentials );
40 40
 
41 41
     /**
42 42
      * Validate a user against the given credentials.
@@ -45,5 +45,5 @@  discard block
 block discarded – undo
45 45
      * @param  array  $credentials
46 46
      * @return bool
47 47
      */
48
-    public function validateCredentials(Authenticatable $user, array $credentials);
48
+    public function validateCredentials( Authenticatable $user, array $credentials );
49 49
 }
Please login to merge, or discard this patch.
vendor/illuminate/contracts/Auth/SupportsBasicAuth.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      * @param  array  $extraConditions
12 12
      * @return \Symfony\Component\HttpFoundation\Response|null
13 13
      */
14
-    public function basic($field = 'email', $extraConditions = []);
14
+    public function basic( $field = 'email', $extraConditions = [ ] );
15 15
 
16 16
     /**
17 17
      * Perform a stateless HTTP Basic login attempt.
@@ -20,5 +20,5 @@  discard block
 block discarded – undo
20 20
      * @param  array  $extraConditions
21 21
      * @return \Symfony\Component\HttpFoundation\Response|null
22 22
      */
23
-    public function onceBasic($field = 'email', $extraConditions = []);
23
+    public function onceBasic( $field = 'email', $extraConditions = [ ] );
24 24
 }
Please login to merge, or discard this patch.