Completed
Push — develop ( 291211...8d06e7 )
by Ando
11:36
created
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function map(Router $router)
39 39
     {
40
-        $router->group(['namespace' => $this->namespace], function ($router) {
40
+        $router->group([ 'namespace' => $this->namespace ], function($router) {
41 41
             require app_path('Http/routes.php');
42 42
         });
43 43
     }
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000000_create_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('users', function (Blueprint $table) {
15
+        Schema::create('users', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('email')->unique();
Please login to merge, or discard this patch.
database/migrations/2014_10_12_100000_create_password_resets_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('password_resets', function (Blueprint $table) {
15
+        Schema::create('password_resets', function(Blueprint $table) {
16 16
             $table->string('email')->index();
17 17
             $table->string('token')->index();
18 18
             $table->timestamp('created_at');
Please login to merge, or discard this patch.
database/factories/ModelFactory.php 1 patch
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
-$factory->define(App\User::class, function (Faker\Generator $faker) {
14
+$factory->define(App\User::class, function(Faker\Generator $faker) {
15 15
     return [
16 16
         'name' => $faker->name,
17 17
         'email' => $faker->safeEmail,
Please login to merge, or discard this patch.
resources/lang/en/validation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,6 +105,6 @@
 block discarded – undo
105 105
     |
106 106
     */
107 107
 
108
-    'attributes' => [],
108
+    'attributes' => [ ],
109 109
 
110 110
 ];
Please login to merge, or discard this patch.
config/mail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     |
55 55
     */
56 56
 
57
-    'from' => ['address' => null, 'name' => null],
57
+    'from' => [ 'address' => null, 'name' => null ],
58 58
 
59 59
     /*
60 60
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
config/session.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
     |
97 97
     */
98 98
 
99
-    'lottery' => [2, 100],
99
+    'lottery' => [ 2, 100 ],
100 100
 
101 101
     /*
102 102
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
config/jwt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     |
99 99
     */
100 100
 
101
-    'required_claims' => ['iss', 'iat', 'exp', 'nbf', 'sub', 'jti'],
101
+    'required_claims' => [ 'iss', 'iat', 'exp', 'nbf', 'sub', 'jti' ],
102 102
 
103 103
     /*
104 104
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
database/seeds/DatabaseSeeder.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
      */
12 12
     public function run()
13 13
     {
14
-         $this->call(UsersTableSeeder::class);
14
+            $this->call(UsersTableSeeder::class);
15 15
     }
16 16
 }
Please login to merge, or discard this patch.