Completed
Push — master ( a38508...8df45b )
by Sherif
02:18
created
src/Modules/Permissions/Database/Seeds/AssignRelationsSeeder.php 2 patches
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -6,27 +6,27 @@
 block discarded – undo
6 6
 
7 7
 class AssignRelationsSeeder extends Seeder
8 8
 {
9
-    /**
10
-     * Run the database seeds.
11
-     *
12
-     * @return void
13
-     */
14
-    public function run()
15
-    {
16
-        $adminGroupId = \DB::table('groups')->where('name', 'admin')->select('id')->first()->id;
9
+	/**
10
+	 * Run the database seeds.
11
+	 *
12
+	 * @return void
13
+	 */
14
+	public function run()
15
+	{
16
+		$adminGroupId = \DB::table('groups')->where('name', 'admin')->select('id')->first()->id;
17 17
 
18
-        /**
19
-         * Assign the permissions to the admin group.
20
-         */
21
-        \DB::table('permissions')->orderBy('created_at', 'asc')->whereIn('model', ['permission'])->each(function ($permission) use ($adminGroupId) {
22
-            \DB::table('groups_permissions')->insert(
23
-                [
24
-                'permission_id' => $permission->id,
25
-                'group_id'      => $adminGroupId,
26
-                'created_at'    => \DB::raw('NOW()'),
27
-                'updated_at'    => \DB::raw('NOW()')
28
-                ]
29
-            );
30
-        });
31
-    }
18
+		/**
19
+		 * Assign the permissions to the admin group.
20
+		 */
21
+		\DB::table('permissions')->orderBy('created_at', 'asc')->whereIn('model', ['permission'])->each(function ($permission) use ($adminGroupId) {
22
+			\DB::table('groups_permissions')->insert(
23
+				[
24
+				'permission_id' => $permission->id,
25
+				'group_id'      => $adminGroupId,
26
+				'created_at'    => \DB::raw('NOW()'),
27
+				'updated_at'    => \DB::raw('NOW()')
28
+				]
29
+			);
30
+		});
31
+	}
32 32
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
         /**
19 19
          * Assign the permissions to the admin group.
20 20
          */
21
-        \DB::table('permissions')->orderBy('created_at', 'asc')->whereIn('model', ['permission'])->each(function ($permission) use ($adminGroupId) {
21
+        \DB::table('permissions')->orderBy('created_at', 'asc')->whereIn('model', ['permission'])->each(function($permission) use ($adminGroupId) {
22 22
             \DB::table('groups_permissions')->insert(
23 23
                 [
24 24
                 'permission_id' => $permission->id,
Please login to merge, or discard this patch.
src/Modules/Permissions/Database/Seeds/ClearDataSeeder.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,15 +6,15 @@
 block discarded – undo
6 6
 
7 7
 class ClearDataSeeder extends Seeder
8 8
 {
9
-    /**
10
-     * Run the database seeds.
11
-     *
12
-     * @return void
13
-     */
14
-    public function run()
15
-    {
16
-        $permissions = \DB::table('permissions')->whereIn('model', ['permission']);
17
-        \DB::table('groups_permissions')->whereIn('permission_id', $permissions->pluck('id'))->delete();
18
-        $permissions->delete();
19
-    }
9
+	/**
10
+	 * Run the database seeds.
11
+	 *
12
+	 * @return void
13
+	 */
14
+	public function run()
15
+	{
16
+		$permissions = \DB::table('permissions')->whereIn('model', ['permission']);
17
+		\DB::table('groups_permissions')->whereIn('permission_id', $permissions->pluck('id'))->delete();
18
+		$permissions->delete();
19
+	}
20 20
 }
Please login to merge, or discard this patch.
Modules/Permissions/Database/Migrations/2016_01_05_130506_permissions.php 2 patches
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -5,40 +5,40 @@
 block discarded – undo
5 5
 
6 6
 class Permissions extends Migration
7 7
 {
8
-    /**
9
-     * Run the migrations.
10
-     *
11
-     * @return void
12
-     */
13
-    public function up()
14
-    {
15
-        Schema::create('permissions', function (Blueprint $table) {
16
-            $table->increments('id');
17
-            $table->string('name', 100);
18
-            $table->string('model', 100);
19
-            $table->softDeletes();
20
-            $table->timestamps();
21
-            $table->unique(array('name', 'model'));
22
-        });
23
-        Schema::create('groups_permissions', function (Blueprint $table) {
24
-            $table->increments('id');
25
-            $table->integer('group_id');
26
-            $table->integer('permission_id');
27
-            $table->softDeletes();
28
-            $table->timestamps();
8
+	/**
9
+	 * Run the migrations.
10
+	 *
11
+	 * @return void
12
+	 */
13
+	public function up()
14
+	{
15
+		Schema::create('permissions', function (Blueprint $table) {
16
+			$table->increments('id');
17
+			$table->string('name', 100);
18
+			$table->string('model', 100);
19
+			$table->softDeletes();
20
+			$table->timestamps();
21
+			$table->unique(array('name', 'model'));
22
+		});
23
+		Schema::create('groups_permissions', function (Blueprint $table) {
24
+			$table->increments('id');
25
+			$table->integer('group_id');
26
+			$table->integer('permission_id');
27
+			$table->softDeletes();
28
+			$table->timestamps();
29 29
 
30
-            $table->index(['group_id']);
31
-        });
32
-    }
30
+			$table->index(['group_id']);
31
+		});
32
+	}
33 33
 
34
-    /**
35
-     * Reverse the migrations.
36
-     *
37
-     * @return void
38
-     */
39
-    public function down()
40
-    {
41
-        Schema::dropIfExists('permissions');
42
-        Schema::dropIfExists('groups_permissions');
43
-    }
34
+	/**
35
+	 * Reverse the migrations.
36
+	 *
37
+	 * @return void
38
+	 */
39
+	public function down()
40
+	{
41
+		Schema::dropIfExists('permissions');
42
+		Schema::dropIfExists('groups_permissions');
43
+	}
44 44
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('permissions', function (Blueprint $table) {
15
+        Schema::create('permissions', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name', 100);
18 18
             $table->string('model', 100);
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
             $table->timestamps();
21 21
             $table->unique(array('name', 'model'));
22 22
         });
23
-        Schema::create('groups_permissions', function (Blueprint $table) {
23
+        Schema::create('groups_permissions', function(Blueprint $table) {
24 24
             $table->increments('id');
25 25
             $table->integer('group_id');
26 26
             $table->integer('permission_id');
Please login to merge, or discard this patch.
src/Modules/Permissions/Http/Resources/AclPermission.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -7,24 +7,24 @@
 block discarded – undo
7 7
 
8 8
 class AclPermission extends JsonResource
9 9
 {
10
-    /**
11
-     * Transform the resource into an array.
12
-     *
13
-     * @param Request $request
14
-     * @return array
15
-     */
16
-    public function toArray($request)
17
-    {
18
-        if (! $this->resource) {
19
-            return [];
20
-        }
10
+	/**
11
+	 * Transform the resource into an array.
12
+	 *
13
+	 * @param Request $request
14
+	 * @return array
15
+	 */
16
+	public function toArray($request)
17
+	{
18
+		if (! $this->resource) {
19
+			return [];
20
+		}
21 21
 
22
-        return [
23
-            'id' => $this->id,
24
-            'name' => $this->name,
25
-            'groups' => GroupResource::collection($this->whenLoaded('groups')),
26
-            'created_at' => $this->created_at,
27
-            'updated_at' => $this->updated_at,
28
-        ];
29
-    }
22
+		return [
23
+			'id' => $this->id,
24
+			'name' => $this->name,
25
+			'groups' => GroupResource::collection($this->whenLoaded('groups')),
26
+			'created_at' => $this->created_at,
27
+			'updated_at' => $this->updated_at,
28
+		];
29
+	}
30 30
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function toArray($request)
19 19
     {
20
-        if (! $this->resource) {
20
+        if ( ! $this->resource) {
21 21
             return [];
22 22
         }
23 23
 
Please login to merge, or discard this patch.
src/Modules/Permissions/Http/Controllers/PermissionController.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -8,15 +8,15 @@
 block discarded – undo
8 8
 
9 9
 class PermissionController extends BaseApiController
10 10
 {
11
-    /**
12
-     * Init new object.
13
-     *
14
-     * @param   PermissionRepository $repo
15
-     * @param   CoreConfig           $config
16
-     * @return  void
17
-     */
18
-    public function __construct(PermissionRepository $repo, CoreConfig $config)
19
-    {
20
-        parent::__construct($repo, $config, 'App\Modules\Permissions\Http\Resources\AclPermission');
21
-    }
11
+	/**
12
+	 * Init new object.
13
+	 *
14
+	 * @param   PermissionRepository $repo
15
+	 * @param   CoreConfig           $config
16
+	 * @return  void
17
+	 */
18
+	public function __construct(PermissionRepository $repo, CoreConfig $config)
19
+	{
20
+		parent::__construct($repo, $config, 'App\Modules\Permissions\Http\Resources\AclPermission');
21
+	}
22 22
 }
Please login to merge, or discard this patch.
src/Modules/OauthClients/OauthClient.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -6,28 +6,28 @@
 block discarded – undo
6 6
 
7 7
 class OauthClient extends Client
8 8
 {
9
-    protected $dates    = ['created_at', 'updated_at'];
10
-    protected $fillable = ['name', 'redirect', 'user_id', 'personal_access_client', 'password_client', 'revoked'];
11
-    public $searchable  = ['name'];
9
+	protected $dates    = ['created_at', 'updated_at'];
10
+	protected $fillable = ['name', 'redirect', 'user_id', 'personal_access_client', 'password_client', 'revoked'];
11
+	public $searchable  = ['name'];
12 12
     
13
-    public function getCreatedAtAttribute($value)
14
-    {
15
-        return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString();
16
-    }
13
+	public function getCreatedAtAttribute($value)
14
+	{
15
+		return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString();
16
+	}
17 17
 
18
-    public function getUpdatedAtAttribute($value)
19
-    {
20
-        return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString();
21
-    }
18
+	public function getUpdatedAtAttribute($value)
19
+	{
20
+		return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString();
21
+	}
22 22
     
23
-    public function user()
24
-    {
25
-        return $this->belongsTo('App\Modules\Users\AclUser');
26
-    }
23
+	public function user()
24
+	{
25
+		return $this->belongsTo('App\Modules\Users\AclUser');
26
+	}
27 27
     
28
-    public static function boot()
29
-    {
30
-        parent::boot();
31
-        OauthClient::observe(\App::make('App\Modules\OauthClients\ModelObservers\OauthClientObserver'));
32
-    }
28
+	public static function boot()
29
+	{
30
+		parent::boot();
31
+		OauthClient::observe(\App::make('App\Modules\OauthClients\ModelObservers\OauthClientObserver'));
32
+	}
33 33
 }
Please login to merge, or discard this patch.
src/Modules/OauthClients/Repositories/OauthClientRepository.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -5,38 +5,38 @@
 block discarded – undo
5 5
 
6 6
 class OauthClientRepository extends BaseRepository
7 7
 {
8
-    /**
9
-     * Init new object.
10
-     *
11
-     * @param   OauthClient $model
12
-     * @return  void
13
-     */
14
-    public function __construct(OauthClient $model)
15
-    {
16
-        parent::__construct($model);
17
-    }
8
+	/**
9
+	 * Init new object.
10
+	 *
11
+	 * @param   OauthClient $model
12
+	 * @return  void
13
+	 */
14
+	public function __construct(OauthClient $model)
15
+	{
16
+		parent::__construct($model);
17
+	}
18 18
 
19
-    /**
20
-     * Revoke the given client.
21
-     *
22
-     * @param  integer  $clientId
23
-     * @return void
24
-     */
25
-    public function revoke($clientId)
26
-    {
27
-        $client = $this->find($clientId);
28
-        $client->tokens()->update(['revoked' => true]);
29
-        $this->save(['id'=> $clientId, 'revoked' => true]);
30
-    }
19
+	/**
20
+	 * Revoke the given client.
21
+	 *
22
+	 * @param  integer  $clientId
23
+	 * @return void
24
+	 */
25
+	public function revoke($clientId)
26
+	{
27
+		$client = $this->find($clientId);
28
+		$client->tokens()->update(['revoked' => true]);
29
+		$this->save(['id'=> $clientId, 'revoked' => true]);
30
+	}
31 31
 
32
-    /**
33
-     * Un revoke the given client.
34
-     *
35
-     * @param  integer  $clientId
36
-     * @return void
37
-     */
38
-    public function unRevoke($clientId)
39
-    {
40
-        $this->save(['id'=> $clientId, 'revoked' => false]);
41
-    }
32
+	/**
33
+	 * Un revoke the given client.
34
+	 *
35
+	 * @param  integer  $clientId
36
+	 * @return void
37
+	 */
38
+	public function unRevoke($clientId)
39
+	{
40
+		$this->save(['id'=> $clientId, 'revoked' => false]);
41
+	}
42 42
 }
Please login to merge, or discard this patch.
src/Modules/OauthClients/ModelObservers/OauthClientObserver.php 1 patch
Indentation   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -8,53 +8,53 @@
 block discarded – undo
8 8
 class OauthClientObserver
9 9
 {
10 10
 
11
-    public function saving($model)
12
-    {
13
-        //
14
-    }
15
-
16
-    public function saved($model)
17
-    {
18
-        //
19
-    }
20
-
21
-    public function creating($model)
22
-    {
23
-        $model->secret = Str::random(40);
24
-    }
25
-
26
-    public function created($model)
27
-    {
28
-        //
29
-    }
30
-
31
-    public function updating($model)
32
-    {
33
-        //
34
-    }
35
-
36
-    public function updated($model)
37
-    {
38
-        //
39
-    }
40
-
41
-    public function deleting($model)
42
-    {
43
-        //
44
-    }
45
-
46
-    public function deleted($model)
47
-    {
48
-        //
49
-    }
50
-
51
-    public function restoring($model)
52
-    {
53
-        //
54
-    }
55
-
56
-    public function restored($model)
57
-    {
58
-        //
59
-    }
11
+	public function saving($model)
12
+	{
13
+		//
14
+	}
15
+
16
+	public function saved($model)
17
+	{
18
+		//
19
+	}
20
+
21
+	public function creating($model)
22
+	{
23
+		$model->secret = Str::random(40);
24
+	}
25
+
26
+	public function created($model)
27
+	{
28
+		//
29
+	}
30
+
31
+	public function updating($model)
32
+	{
33
+		//
34
+	}
35
+
36
+	public function updated($model)
37
+	{
38
+		//
39
+	}
40
+
41
+	public function deleting($model)
42
+	{
43
+		//
44
+	}
45
+
46
+	public function deleted($model)
47
+	{
48
+		//
49
+	}
50
+
51
+	public function restoring($model)
52
+	{
53
+		//
54
+	}
55
+
56
+	public function restored($model)
57
+	{
58
+		//
59
+	}
60 60
 }
Please login to merge, or discard this patch.
src/Modules/OauthClients/Routes/api.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Route::group(['prefix' => 'oauth/clients'], function () {
14
+Route::group(['prefix' => 'oauth/clients'], function() {
15 15
         
16 16
     Route::get('/', 'OauthClientController@index');
17 17
     Route::get('/{id}', 'OauthClientController@find');
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
 
14 14
 Route::group(['prefix' => 'oauth/clients'], function () {
15 15
         
16
-    Route::get('/', 'OauthClientController@index');
17
-    Route::get('/{id}', 'OauthClientController@find');
18
-    Route::post('/', 'OauthClientController@insert');
19
-    Route::put('/', 'OauthClientController@update');
20
-    Route::get('revoke/{id}', 'OauthClientController@revoke');
21
-    Route::get('unrevoke/{id}', 'OauthClientController@unRevoke');
16
+	Route::get('/', 'OauthClientController@index');
17
+	Route::get('/{id}', 'OauthClientController@find');
18
+	Route::post('/', 'OauthClientController@insert');
19
+	Route::put('/', 'OauthClientController@update');
20
+	Route::get('revoke/{id}', 'OauthClientController@revoke');
21
+	Route::get('unrevoke/{id}', 'OauthClientController@unRevoke');
22 22
 });
Please login to merge, or discard this patch.