@@ -29,7 +29,7 @@ discard block |
||
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() |
@@ -48,19 +48,19 @@ discard block |
||
48 | 48 | |
49 | 49 | protected function publishMigrations() |
50 | 50 | { |
51 | - if (! class_exists('CreateTaxonomiesTable')) { |
|
51 | + if (!class_exists('CreateTaxonomiesTable')) { |
|
52 | 52 | $timestamp = date('Y_m_d_His', time()); |
53 | 53 | |
54 | 54 | $this->publishes([ |
55 | - __DIR__.'/../database/migrations/create_taxonomy_tables.php' => database_path('/migrations/' . $timestamp . '_create_taxonomy_tables.php'), |
|
55 | + __DIR__ . '/../database/migrations/create_taxonomy_tables.php' => database_path('/migrations/' . $timestamp . '_create_taxonomy_tables.php'), |
|
56 | 56 | ], 'migrations'); |
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
60 | 60 | protected function overrideModels() |
61 | 61 | { |
62 | - if (! class_exists('App\Models\Term\Taxonomy') || ! class_exists('App\Models\Vocabulary\Taxonomy')) { |
|
63 | - $modelPathStub = __DIR__.'/stubs/models/'; |
|
62 | + if (!class_exists('App\Models\Term\Taxonomy') || !class_exists('App\Models\Vocabulary\Taxonomy')) { |
|
63 | + $modelPathStub = __DIR__ . '/stubs/models/'; |
|
64 | 64 | $modelPath = $this->checkMakeDir(app_path('Models/Taxonomy')) . '/'; |
65 | 65 | |
66 | 66 | $this->publishes([ |
@@ -27,7 +27,7 @@ discard block |
||
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 |
||
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->string('system_name')->nullable()->unique(); |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | */ |
65 | 65 | public function createVocabulariablesTable() |
66 | 66 | { |
67 | - Schema::create('vocabularyables', function (Blueprint $table) { |
|
67 | + Schema::create('vocabularyables', function(Blueprint $table) { |
|
68 | 68 | $table->unsignedInteger('vocabulary_id'); |
69 | 69 | $table->morphs('vocabularyable'); |
70 | 70 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function createTermablesTable() |
82 | 82 | { |
83 | - Schema::create('termables', function (Blueprint $table) { |
|
83 | + Schema::create('termables', function(Blueprint $table) { |
|
84 | 84 | $table->unsignedInteger('term_id'); |
85 | 85 | $table->morphs('termable'); |
86 | 86 |