Completed
Pull Request — master (#2)
by Robin
17:27 queued 14:48
created
src/migrations/2018_08_06_143914_create_crawler_status_logs_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('crawler_status_logs', function (Blueprint $table) {
16
+        Schema::create('crawler_status_logs', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
 
19 19
             $table->integer('status_id');
Please login to merge, or discard this patch.
src/migrations/2018_08_06_143911_create_crawler_status_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('crawler_statuses', function (Blueprint $table) {
16
+        Schema::create('crawler_statuses', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
 
19 19
             $table->integer('crawler_id');
Please login to merge, or discard this patch.
src/migrations/2018_08_06_143904_create_crawlers_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('crawlers', function (Blueprint $table) {
16
+        Schema::create('crawlers', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
 
19 19
             $table->string('name');
Please login to merge, or discard this patch.
src/Models/Crawlers.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
     use SoftDeletes;
12 12
 
13 13
     protected $fillable = [
14
-       'name',
15
-       'description'
16
-   ];
14
+        'name',
15
+        'description'
16
+    ];
17 17
 
18 18
 
19 19
     public function activate()
Please login to merge, or discard this patch.