Passed
Pull Request — master (#108)
by
unknown
05:52
created
src/Http/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 Route::group([
6 6
     'prefix' => config('saml2.routesPrefix'),
7 7
     'middleware' => array_merge(['saml2.resolveIdp'], config('saml2.routesMiddleware')),
8
-], function () {
8
+], function() {
9 9
     Route::get('/{key}/logout', array(
10 10
         'as' => 'saml.logout',
11 11
         'uses' => 'Slides\Saml2\Http\Controllers\Saml2Controller@logout',
Please login to merge, or discard this patch.
src/Http/Middleware/ResolveIdp.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function handle($request, \Closure $next)
43 43
     {
44
-        if(!$idp = $this->resolveIdp($request)) {
44
+        if (!$idp = $this->resolveIdp($request)) {
45 45
             throw new NotFoundHttpException();
46 46
         }
47 47
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     protected function resolveIdp($request)
71 71
     {
72
-        if(!$key = $request->route('key')) {
72
+        if (!$key = $request->route('key')) {
73 73
             if (config('saml2.debug')) {
74 74
                 Log::debug('[Saml2] IdP key is not present in the URL so cannot be resolved', [
75 75
                     'url' => $request->fullUrl()
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
             return null;
80 80
         }
81 81
 
82
-        if(!$idp = config("saml2.idps.$key")) {
82
+        if (!$idp = config("saml2.idps.$key")) {
83 83
             if (config('saml2.debug')) {
84 84
                 Log::debug('[Saml2] Unknown IdP requested', [
85 85
                   'key' => $key
Please login to merge, or discard this patch.
src/OneLoginBuilder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
             OneLoginUtils::setProxyVars(true);
66 66
         }
67 67
 
68
-        $this->app->singleton('OneLogin_Saml2_Auth', function ($app) {
68
+        $this->app->singleton('OneLogin_Saml2_Auth', function($app) {
69 69
             $config = $app['config']['saml2'];
70 70
             // Supply only what is needed.
71 71
             unset($config['idps']);
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             return new OneLoginAuth($oneLoginConfig);
82 82
         });
83 83
 
84
-        $this->app->singleton('Slides\Saml2\Auth', function ($app) {
84
+        $this->app->singleton('Slides\Saml2\Auth', function($app) {
85 85
             return new \Slides\Saml2\Auth($app['OneLogin_Saml2_Auth'], $this->idp);
86 86
         });
87 87
     }
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     protected function setConfigDefaultValues(array &$config)
97 97
     {
98 98
         foreach ($this->configDefaultValues() as $key => $default) {
99
-            if(!Arr::get($config, $key)) {
99
+            if (!Arr::get($config, $key)) {
100 100
                 Arr::set($config, $key, $default);
101 101
             }
102 102
         }
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
     {
17 17
         $target = \Illuminate\Support\Facades\URL::to($path, $parameters, $secure);
18 18
 
19
-        if(!$key) {
20
-            if(!$key = saml_idp_key()) {
19
+        if (!$key) {
20
+            if (!$key = saml_idp_key()) {
21 21
                 return $target;
22 22
             }
23 23
         }
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
     {
42 42
         $target = \Illuminate\Support\Facades\URL::route($name, $parameters, true);
43 43
 
44
-        if(!$key) {
45
-            if(!$key = saml_idp_key()) {
44
+        if (!$key) {
45
+            if (!$key = saml_idp_key()) {
46 46
                 return $target;
47 47
             }
48 48
         }
Please login to merge, or discard this patch.