Completed
Pull Request — master (#1)
by
unknown
02:48 queued 20s
created
Database/Migrations/2016_06_01_000002_create_oauth_access_tokens_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('oauth_access_tokens', function (Blueprint $table) {
16
+		Schema::create('oauth_access_tokens', function(Blueprint $table) {
17 17
 			$table->string('id', 100)->primary();
18 18
 			$table->integer('user_id')->index()->nullable();
19 19
 			$table->integer('client_id');
Please login to merge, or discard this patch.
Acl/Database/Migrations/2016_06_01_000004_create_oauth_clients_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('oauth_clients', function (Blueprint $table) {
16
+		Schema::create('oauth_clients', function(Blueprint $table) {
17 17
 			$table->increments('id');
18 18
 			$table->integer('user_id')->index()->nullable();
19 19
 			$table->string('name');
Please login to merge, or discard this patch.
src/Modules/Acl/Database/Migrations/2015_12_22_145819_groups.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,14 +12,14 @@
 block discarded – undo
12 12
 	 */
13 13
 	public function up()
14 14
 	{
15
-		Schema::create('groups', function (Blueprint $table) {
15
+		Schema::create('groups', function(Blueprint $table) {
16 16
 			$table->increments('id');
17
-			$table->string('name',100)->unique();
17
+			$table->string('name', 100)->unique();
18 18
 			$table->softDeletes();
19 19
 			$table->timestamps();
20 20
 		});
21 21
         
22
-		Schema::create('users_groups', function (Blueprint $table) {
22
+		Schema::create('users_groups', function(Blueprint $table) {
23 23
 			$table->increments('id');
24 24
 			$table->integer('user_id');
25 25
 			$table->integer('group_id');
Please login to merge, or discard this patch.
Database/Migrations/2016_06_01_000003_create_oauth_refresh_tokens_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('oauth_refresh_tokens', function (Blueprint $table) {
16
+		Schema::create('oauth_refresh_tokens', function(Blueprint $table) {
17 17
 			$table->string('id', 100)->primary();
18 18
 			$table->string('access_token_id', 100)->index();
19 19
 			$table->boolean('revoked');
Please login to merge, or discard this patch.
Migrations/2016_06_01_000005_create_oauth_personal_access_clients_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('oauth_personal_access_clients', function (Blueprint $table) {
16
+		Schema::create('oauth_personal_access_clients', function(Blueprint $table) {
17 17
 			$table->increments('id');
18 18
 			$table->integer('client_id')->index();
19 19
 			$table->timestamps();
Please login to merge, or discard this patch.
src/Modules/Acl/Database/Migrations/2016_01_05_130506_permissions.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,15 +12,15 @@
 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
-			$table->string('name',100);
18
-			$table->string('model',100);
17
+			$table->string('name', 100);
18
+			$table->string('model', 100);
19 19
 			$table->softDeletes();
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.
Acl/Database/Migrations/2016_06_01_000001_create_oauth_auth_codes_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('oauth_auth_codes', function (Blueprint $table) {
16
+		Schema::create('oauth_auth_codes', function(Blueprint $table) {
17 17
 			$table->string('id', 100)->primary();
18 18
 			$table->integer('user_id');
19 19
 			$table->integer('client_id');
Please login to merge, or discard this patch.
src/Modules/Notifications/Notification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use Illuminate\Notifications\DatabaseNotification;
4 4
 use Illuminate\Database\Eloquent\SoftDeletes;
5 5
 
6
-class Notification extends DatabaseNotification{
6
+class Notification extends DatabaseNotification {
7 7
 
8 8
 	public function getCreatedAtAttribute($value)
9 9
 	{
Please login to merge, or discard this patch.
src/Modules/Notifications/Providers/RouteServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 		Route::group([
55 55
 			'middleware' => 'web',
56 56
 			'namespace'  => $this->namespace,
57
-		], function ($router) {
57
+		], function($router) {
58 58
 			require module_path('notifications', 'Routes/web.php');
59 59
 		});
60 60
 	}
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 			'middleware' => 'api',
73 73
 			'namespace'  => $this->namespace,
74 74
 			'prefix'     => 'api',
75
-		], function ($router) {
75
+		], function($router) {
76 76
 			require module_path('notifications', 'Routes/api.php');
77 77
 		});
78 78
 	}
Please login to merge, or discard this patch.