Completed
Push — master ( 453e3c...2f13e8 )
by Mahmoud
18:11 queued 11:11
created
Artwork/Data/Migrations/2016_07_20_119999_create_artworks_table.php 1 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
     public function up()
20 20
     {
21
-        Schema::create('artworks', function (Blueprint $table) {
21
+        Schema::create('artworks', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
             $table->string('source');
24 24
             $table->string('origin')->nullable();
Please login to merge, or discard this patch.
Data/Migrations/2016_07_20_110999_create_artwork_specifications_table.php 1 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
     public function up()
20 20
     {
21
-        Schema::create('artwork_specifications', function (Blueprint $table) {
21
+        Schema::create('artwork_specifications', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
 
24 24
             $table->string('name');
Please login to merge, or discard this patch.
app/Containers/User/Actions/CreateUserAction.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
         // be default give all users developer access in addition to the client role which is normal
68 68
         $this->assignRoleTask->run($user, ['client', 'developer']);
69 69
 
70
-       //  add Client as role for normal users
70
+        //  add Client as role for normal users
71 71
         $this->fireUserCreatedEventTask->run($user);
72 72
 
73 73
         return $user;
Please login to merge, or discard this patch.
app/Containers/User/Data/Factories/UserFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Illuminate\Support\Facades\Hash;
4 4
 
5
-$factory->define(App\Containers\User\Models\User::class, function (Faker\Generator $faker) {
5
+$factory->define(App\Containers\User\Models\User::class, function(Faker\Generator $faker) {
6 6
 
7 7
     return [
8 8
         'name'              => $faker->name,
Please login to merge, or discard this patch.
app/Containers/Excel/Tasks/ValidateFileExtensionTask.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
         $ext = $file->getExtension();
28 28
 
29
-        if(!$ext){
29
+        if (!$ext) {
30 30
             $ext = pathinfo($file->getClientOriginalName())['extension'];
31 31
         }
32 32
 
Please login to merge, or discard this patch.
app/Containers/Excel/Data/Factories/ExcelMapperFactory.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 App\Containers\Excel\Models\ExcelMapper;
4 4
 use App\Containers\User\Models\User;
5 5
 
6
-$factory->define(ExcelMapper::class, function (Faker\Generator $faker) {
6
+$factory->define(ExcelMapper::class, function(Faker\Generator $faker) {
7 7
     return [
8 8
         'name'    => $faker->name(),
9 9
         'note'    => $faker->text(10),
Please login to merge, or discard this patch.
Excel/Data/Migrations/2017_01_01_110948_create_excel_mappers_table.php 1 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
     public function up()
20 20
     {
21
-        Schema::create('excel_mappers', function (Blueprint $table) {
21
+        Schema::create('excel_mappers', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
 
24 24
             $table->string('name');
Please login to merge, or discard this patch.
Excel/Data/Migrations/2017_01_01_110947_create_excel_fields_table.php 1 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
     public function up()
20 20
     {
21
-        Schema::create('excel_fields', function (Blueprint $table) {
21
+        Schema::create('excel_fields', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
 
24 24
             $table->string('name')->unique();
Please login to merge, or discard this patch.
Excel/Data/Migrations/2017_01_01_110949_create_excel_file_table.php 1 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
     public function up()
20 20
     {
21
-        Schema::create('excel_files', function (Blueprint $table) {
21
+        Schema::create('excel_files', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
 
24 24
             $table->string('full_path');
Please login to merge, or discard this patch.