diff --git a/src/CrudBuilder.php b/src/CrudBuilder.php index 0b85967..95f3b30 100644 --- a/src/CrudBuilder.php +++ b/src/CrudBuilder.php @@ -14,7 +14,6 @@ class CrudBuilder { - use AddsAttributesToModel, AddsDefaultAttributesToModel, AddsIgnoreAttributesToModel, diff --git a/tests/AllowedAttributeTest.php b/tests/AllowedAttributeTest.php index abfb9c4..748df39 100644 --- a/tests/AllowedAttributeTest.php +++ b/tests/AllowedAttributeTest.php @@ -8,7 +8,6 @@ class AllowedAttributeTest extends TestCase { - /** @test */ public function it_can_add_attribute_in_model() { diff --git a/tests/AllowedRelationTest.php b/tests/AllowedRelationTest.php index b0df1dd..3d4523d 100644 --- a/tests/AllowedRelationTest.php +++ b/tests/AllowedRelationTest.php @@ -9,7 +9,6 @@ class AllowedRelationTest extends TestCase { - /** @test */ public function it_can_add_single_relation_to_model() { diff --git a/tests/CrudBuilderTest.php b/tests/CrudBuilderTest.php index 687e623..40d2e6f 100644 --- a/tests/CrudBuilderTest.php +++ b/tests/CrudBuilderTest.php @@ -7,12 +7,10 @@ class QueryBuilderTest extends TestCase { - /** @test */ public function it_will_create_for_given_model() { $builder = CrudBuilder::for(SingerModel::class); $this->assertInstanceOf(CrudBuilder::class, $builder); } - } \ No newline at end of file diff --git a/tests/IgnoreAttributeTest.php b/tests/IgnoreAttributeTest.php index 124b96e..65af299 100644 --- a/tests/IgnoreAttributeTest.php +++ b/tests/IgnoreAttributeTest.php @@ -8,7 +8,6 @@ class IgnoreAttributeTest extends TestCase { - /** @test */ public function it_can_ignore_attribute_in_model() {