Passed
Branch master (ce7d73)
by Vasyl
02:47
created
src/TaxonomyServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function register()
31 31
     {
32
-        $this->mergeConfigFrom(__DIR__.'/../config/taxonomy.php', 'taxonomy');
32
+        $this->mergeConfigFrom(__DIR__ . '/../config/taxonomy.php', 'taxonomy');
33 33
     }
34 34
 
35 35
     protected function publishConfig()
@@ -47,10 +47,10 @@  discard block
 block discarded – undo
47 47
 
48 48
     protected function publishMigrations()
49 49
     {
50
-        if (! class_exists('CreateTaxonomiesTable')) {
50
+        if (!class_exists('CreateTaxonomiesTable')) {
51 51
             $timestamp = date('Y_m_d_His', time());
52 52
 
53
-            $migrationPath = __DIR__.'/../database/migrations/create_taxonomies_table.php';
53
+            $migrationPath = __DIR__ . '/../database/migrations/create_taxonomies_table.php';
54 54
             $this->publishes([$migrationPath => database_path('/migrations/' . $timestamp . '_create_taxonomies_table.php'),
55 55
                 ], 'taxonomy-migrations');
56 56
         }
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
 
59 59
     protected function overrideModels()
60 60
     {
61
-        $modelPathStub = __DIR__.'/stubs/models/';
61
+        $modelPathStub = __DIR__ . '/stubs/models/';
62 62
         $modelPath = $this->checkMakeDir(app_path('Models/Taxonomies')) . '/';
63 63
 
64
-        if (! class_exists('App\Models\Term\Taxonomies') || ! class_exists('App\Models\Vocabulary\Taxonomies')) {
64
+        if (!class_exists('App\Models\Term\Taxonomies') || !class_exists('App\Models\Vocabulary\Taxonomies')) {
65 65
             $this->publishes([
66 66
                 $modelPathStub . 'Term.php.stub' => $modelPath . 'Term.php',
67 67
                 $modelPathStub . 'Vocabulary.php.stub' => $modelPath . 'Vocabulary.php',
Please login to merge, or discard this patch.
src/Models/Traits/HasTaxonomies.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function scopeTermsByVocabulary($query, $vocabulary)
51 51
     {
52
-        return $query->whereHas('terms', function ($t) use ($vocabulary) {
52
+        return $query->whereHas('terms', function($t) use ($vocabulary) {
53 53
             $t->where('vocabulary', $vocabulary);
54 54
         });
55 55
     }
@@ -74,8 +74,8 @@  discard block
 block discarded – undo
74 74
     {
75 75
         foreach ($taxonomies as $vocabulary => $terms) {
76 76
             $terms = is_array($terms) ? $terms : [$terms];
77
-            if (! empty($terms)) {
78
-                $query->whereHas('terms', function ($t) use ($vocabulary, $terms, $termKey) {
77
+            if (!empty($terms)) {
78
+                $query->whereHas('terms', function($t) use ($vocabulary, $terms, $termKey) {
79 79
                     $t->where('vocabulary', $vocabulary)->whereIn($termKey, $terms);
80 80
                 });
81 81
             }
Please login to merge, or discard this patch.
database/migrations/create_taxonomies_table.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function createVocabulariesTable()
29 29
     {
30
-        Schema::create('vocabularies', function (Blueprint $table) {
30
+        Schema::create('vocabularies', function(Blueprint $table) {
31 31
             $table->increments('id');
32 32
             $table->string('system_name')->unique();
33 33
             $table->string('name');
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function createTermsTable()
43 43
     {
44
-        Schema::create('terms', function (Blueprint $table) {
44
+        Schema::create('terms', function(Blueprint $table) {
45 45
             $table->increments('id');
46 46
             $table->string('name');
47 47
             $table->text('description')->nullable();
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function createVocabulariablesTable()
68 68
     {
69
-        Schema::create('vocabularyables', function (Blueprint $table) {
69
+        Schema::create('vocabularyables', function(Blueprint $table) {
70 70
             $table->unsignedInteger('vocabulary_id');
71 71
             $table->morphs('vocabularyable');
72 72
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      */
83 83
     public function createTermablesTable()
84 84
     {
85
-         Schema::create('termables', function (Blueprint $table) {
85
+         Schema::create('termables', function(Blueprint $table) {
86 86
              $table->unsignedInteger('term_id');
87 87
              $table->morphs('termable');
88 88
     
Please login to merge, or discard this patch.
database/seeds/TaxonomyTableSeeder.php.stub.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                 'description' => $item['description'] ?? null,
134 134
             ]);
135 135
 
136
-            if (! empty($item['terms'])) {
136
+            if (!empty($item['terms'])) {
137 137
                 $this->seedTerms($item['terms'], $vocabulary);
138 138
             }
139 139
         }
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
                 'parent_id' => $parentId,
156 156
             ]);
157 157
 
158
-            if (! empty($item['terms'])) {
158
+            if (!empty($item['terms'])) {
159 159
                 $this->seedTerms($item['terms'], $vocabulary, $term->id);
160 160
             }
161 161
         }
Please login to merge, or discard this patch.