Passed
Pull Request — master (#18)
by
unknown
05:36 queued 02:48
created
src/Routes/server.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * Routes which is neccessary for the SSO server.
5 5
  */
6 6
 
7
-Route::middleware('api')->prefix('api/sso')->group(function () {
7
+Route::middleware('api')->prefix('api/sso')->group(function() {
8 8
     Route::post('login', 'Zefy\LaravelSSO\Controllers\ServerController@login');
9 9
     Route::post('logout', 'Zefy\LaravelSSO\Controllers\ServerController@logout');
10 10
     Route::get('attach', 'Zefy\LaravelSSO\Controllers\ServerController@attach');
Please login to merge, or discard this patch.
src/LaravelSSOBroker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
 
102 102
         $headers = [
103 103
             'Accept' => 'application/json',
104
-            'Authorization' => 'Bearer '. $this->getSessionId(),
104
+            'Authorization' => 'Bearer ' . $this->getSessionId(),
105 105
         ];
106 106
 
107 107
         switch ($method) {
Please login to merge, or discard this patch.
src/SSOServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     {
24 24
         $this->publishConfig(__DIR__ . '/../config/' . $this->configFileName);
25 25
 
26
-        $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
26
+        $this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
27 27
 
28 28
         if ($this->app->runningInConsole()) {
29 29
             $this->commands([
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     {
76 76
         // If this page is server, load routes which is required for the server.
77 77
         if (config('laravel-sso.type') == 'server') {
78
-            $this->loadRoutesFrom(__DIR__.'/Routes/server.php');
78
+            $this->loadRoutesFrom(__DIR__ . '/Routes/server.php');
79 79
         }
80 80
     }
81 81
 }
Please login to merge, or discard this patch.
database/migrations/2018_03_01_073503_create_brokers_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create(config('laravel-sso.brokersTable', 'brokers'), function (Blueprint $table) {
16
+        Schema::create(config('laravel-sso.brokersTable', 'brokers'), function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name')->unique();
19 19
             $table->string('secret');
Please login to merge, or discard this patch.
database/migrations/2019_05_30_184551_create_broker_user_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create(config('laravel-sso.brokerUserTable', 'broker_user'), function (Blueprint $table) {
16
+        Schema::create(config('laravel-sso.brokerUserTable', 'broker_user'), function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
 
19 19
             $table->integer('user_id')->foreign('user_id')->references('id')->on('users');
Please login to merge, or discard this patch.
src/Models/BrokerUser.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,11 +8,11 @@
 block discarded – undo
8 8
 class BrokerUser extends Model
9 9
 {
10 10
     use SoftDeletes;
11
-     /**
12
-     * Get the table associated with the model.
13
-     *
14
-     * @return string
15
-     */
11
+        /**
12
+         * Get the table associated with the model.
13
+         *
14
+         * @return string
15
+         */
16 16
     public function getTable()
17 17
     {
18 18
         return config('laravel-sso.brokerUserTable', 'broker_user');
Please login to merge, or discard this patch.
src/LaravelSSOServer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
     {
107 107
         $userInfo = $this->userInfo();
108 108
         $broker = $this->getBrokerDetail();
109
-        if(!empty($userInfo->id) && !empty($broker)) {
109
+        if (!empty($userInfo->id) && !empty($broker)) {
110 110
             $brokerUser = config('laravel-sso.brokersUserModel')::where('user_id', $userInfo->id)->where('broker_id', $broker->id)->first();
111
-            if(empty($brokerUser)) {
111
+            if (empty($brokerUser)) {
112 112
                 return false;
113 113
             }
114 114
         }
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     protected function getBrokerSessionId()
154 154
     {
155 155
         $authorization = request()->header('Authorization', null);
156
-        if ($authorization &&  strpos($authorization, 'Bearer') === 0) {
156
+        if ($authorization && strpos($authorization, 'Bearer') === 0) {
157 157
             return substr($authorization, 7);
158 158
         }
159 159
 
Please login to merge, or discard this patch.