Completed
Push — master ( 7fd3dc...2f5e5e )
by Sherif
10:09
created

OauthClientsTableSeeder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 81
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 81
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 73 1
1
<?php
2
3
namespace App\Modules\V1\Acl\Database\Seeds;
4
5
use Illuminate\Database\Seeder;
6
7
class OauthClientsTableSeeder extends Seeder
8
{
9
    /**
10
     * Run the database seeds.
11
     *
12
     * @return void
13
     */
14
    public function run()
15
    {
16
    	/**
17
         * Insert the permissions related to oauthClients table.
18
         */
19
        \DB::table('permissions')->insert(
20
        	[
21
        		/**
22
        		 * Users model permissions.
23
        		 */
24
	        	[
25
	        	'name'       => 'list',
26
	        	'model'      => 'oauthClients',
27
	        	'created_at' => \DB::raw('NOW()'),
28
	        	'updated_at' => \DB::raw('NOW()')
29
	        	],
30
	        	[
31
	        	'name'       => 'find',
32
	        	'model'      => 'oauthClients',
33
	        	'created_at' => \DB::raw('NOW()'),
34
	        	'updated_at' => \DB::raw('NOW()')
35
	        	],
36
	        	[
37
	        	'name'       => 'search',
38
	        	'model'      => 'oauthClients',
39
	        	'created_at' => \DB::raw('NOW()'),
40
	        	'updated_at' => \DB::raw('NOW()')
41
	        	],
42
	        	[
43
	        	'name'       => 'paginate',
44
	        	'model'      => 'oauthClients',
45
	        	'created_at' => \DB::raw('NOW()'),
46
	        	'updated_at' => \DB::raw('NOW()')
47
	        	],
48
	        	[
49
	        	'name'       => 'revoke',
50
	        	'model'      => 'oauthClients',
51
	        	'created_at' => \DB::raw('NOW()'),
52
	        	'updated_at' => \DB::raw('NOW()')
53
	        	],
54
	        	[
55
	        	'name'       => 'unRevoke',
56
	        	'model'      => 'oauthClients',
57
	        	'created_at' => \DB::raw('NOW()'),
58
	        	'updated_at' => \DB::raw('NOW()')
59
	        	],
60
	        	[
61
	        	'name'       => 'first',
62
	        	'model'      => 'oauthClients',
63
	        	'created_at' => \DB::raw('NOW()'),
64
	        	'updated_at' => \DB::raw('NOW()')
65
	        	],
66
	        	[
67
	        	'name'       => 'findby',
68
	        	'model'      => 'oauthClients',
69
	        	'created_at' => \DB::raw('NOW()'),
70
	        	'updated_at' => \DB::raw('NOW()')
71
	        	],
72
	        	[
73
	        	'name'       => 'paginateby',
74
	        	'model'      => 'oauthClients',
75
	        	'created_at' => \DB::raw('NOW()'),
76
	        	'updated_at' => \DB::raw('NOW()')
77
	        	],
78
	        	[
79
	        	'name'       => 'save',
80
	        	'model'      => 'oauthClients',
81
	        	'created_at' => \DB::raw('NOW()'),
82
	        	'updated_at' => \DB::raw('NOW()')
83
	        	]
84
        	]
85
        );
86
    }
87
}
88