Skip to content

Commit 53d7bf4

Browse files
committed
Allow status to be fillable on test models
1 parent 7bfd7e9 commit 53d7bf4

8 files changed

Lines changed: 8 additions & 8 deletions

tests/Fixtures/TestActiveModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ class TestActiveModel extends Model
1111

1212
protected $table = 'test_active_models';
1313

14-
protected $fillable = ['name'];
14+
protected $fillable = ['name', 'status'];
1515
}

tests/Fixtures/TestApplicationModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ class TestApplicationModel extends Model
1111

1212
protected $table = 'test_application_models';
1313

14-
protected $fillable = ['name'];
14+
protected $fillable = ['name', 'status'];
1515
}

tests/Fixtures/TestApprovalModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ class TestApprovalModel extends Model
1111

1212
protected $table = 'test_approval_models';
1313

14-
protected $fillable = ['name'];
14+
protected $fillable = ['name', 'status'];
1515
}

tests/Fixtures/TestModeratorModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ class TestModeratorModel extends Model
1111

1212
protected $table = 'test_moderator_models';
1313

14-
protected $fillable = ['name'];
14+
protected $fillable = ['name', 'status'];
1515
}

tests/Fixtures/TestOrderModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ class TestOrderModel extends Model
1111

1212
protected $table = 'test_order_models';
1313

14-
protected $fillable = ['name'];
14+
protected $fillable = ['name', 'status'];
1515
}

tests/Fixtures/TestProcessingModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ class TestProcessingModel extends Model
1111

1212
protected $table = 'test_processing_models';
1313

14-
protected $fillable = ['name'];
14+
protected $fillable = ['name', 'status'];
1515
}

tests/Fixtures/TestPublishingModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ class TestPublishingModel extends Model
1111

1212
protected $table = 'test_publishing_models';
1313

14-
protected $fillable = ['name'];
14+
protected $fillable = ['name', 'status'];
1515
}

tests/Fixtures/TestSubscriptionModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ class TestSubscriptionModel extends Model
1111

1212
protected $table = 'test_subscription_models';
1313

14-
protected $fillable = ['name'];
14+
protected $fillable = ['name', 'status'];
1515
}

0 commit comments

Comments
 (0)