Skip to content

Commit 0946c7f

Browse files
adamgooseStyleCIBot
authored andcommitted
Applied fixes from StyleCI
1 parent 68f2a68 commit 0946c7f

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

phpunit.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
$table->string('string');
5151
$table->string('email');
5252
$table->timestamps();
53-
});
53+
});

src/Eloquent/FormAccessible.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ protected function getReflection()
8484

8585
return $this->reflection;
8686
}
87-
}
87+
}

tests/FormAccessibleTest.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ public function testItDoesntRequireTheUseOfThisFeature()
5959
$this->assertEquals($model->string, 'ABCDEFGHIJKLMNOP');
6060
$this->assertEquals($model->created_at, Carbon::now()->diffForHumans());
6161
}
62-
6362
}
6463

6564
class ModelThatUsesForms extends Model
@@ -88,7 +87,6 @@ public function getCreatedAtAttribute($value)
8887
{
8988
return '1 second ago';
9089
}
91-
9290
}
9391

9492
class ModelThatDoesntUseForms extends Model
@@ -105,5 +103,4 @@ public function getCreatedAtAttribute($value)
105103
{
106104
return '1 second ago';
107105
}
108-
109-
}
106+
}

tests/HtmlBuilderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ public function testComponentRegistration()
6868

6969
$this->assertTrue($this->htmlBuilder->hasComponent('tweet'));
7070
}
71-
}
71+
}

0 commit comments

Comments
 (0)