99trait EloquentAsserts
1010{
1111 /**
12- * Assert that model's table name equals to the given value.
12+ * Assert that the model's table name equals to the given value.
1313 *
1414 * @param string $class
1515 * @param string $table
@@ -25,7 +25,7 @@ protected function assertEloquentTableEquals(string $class, string $table)
2525 }
2626
2727 /**
28- * Assert that model's table name doesn't equal to the given value.
28+ * Assert that the model's table name doesn't equal to the given value.
2929 *
3030 * @param string $class
3131 * @param string $table
@@ -41,7 +41,7 @@ protected function assertEloquentTableNotEquals(string $class, string $table)
4141 }
4242
4343 /**
44- * Assert that model's primary key is incrementing.
44+ * Assert that the model's primary key is incrementing.
4545 *
4646 * @param string $class
4747 * @return void
@@ -56,7 +56,7 @@ protected function assertEloquentIsIncrementing(string $class)
5656 }
5757
5858 /**
59- * Assert that model's primary key is not incrementing.
59+ * Assert that the model's primary key is not incrementing.
6060 *
6161 * @param string $class
6262 * @return void
@@ -71,7 +71,7 @@ protected function assertEloquentIsNotIncrementing(string $class)
7171 }
7272
7373 /**
74- * Assert that model's `fillable` field equals to the given value.
74+ * Assert that the model's `fillable` field equals to the given value.
7575 *
7676 * @param string $class
7777 * @param array $fillable
@@ -87,7 +87,7 @@ protected function assertEloquentFillableEquals(string $class, array $fillable)
8787 }
8888
8989 /**
90- * Assert that model's `fillable` field doesn't equal to the given value.
90+ * Assert that the model's `fillable` field doesn't equal to the given value.
9191 *
9292 * @param string $class
9393 * @param array $fillable
@@ -103,7 +103,7 @@ protected function assertEloquentFillableNotEquals(string $class, array $fillabl
103103 }
104104
105105 /**
106- * Assert that model's `dates` field equals to the given value.
106+ * Assert that the model's `dates` field equals to the given value.
107107 *
108108 * @param string $class
109109 * @param array $dates
@@ -119,7 +119,7 @@ protected function assertEloquentDatesEquals(string $class, array $dates)
119119 }
120120
121121 /**
122- * Assert that model's `dates` field doesn't equal to the given value.
122+ * Assert that the model's `dates` field doesn't equal to the given value.
123123 *
124124 * @param string $class
125125 * @param array $dates
@@ -135,7 +135,7 @@ protected function assertEloquentDatesNotEquals(string $class, array $dates)
135135 }
136136
137137 /**
138- * Assert that model's `touches` field equals to the given value.
138+ * Assert that the model's `touches` field equals to the given value.
139139 *
140140 * @param string $class
141141 * @param array $touches
@@ -151,7 +151,7 @@ protected function assertEloquentTouchesEquals(string $class, array $touches)
151151 }
152152
153153 /**
154- * Assert that model's `touches` field doesn't equal to the given value.
154+ * Assert that the model's `touches` field doesn't equal to the given value.
155155 *
156156 * @param string $class
157157 * @param array $touches
@@ -167,7 +167,7 @@ protected function assertEloquentTouchesNotEquals(string $class, array $touches)
167167 }
168168
169169 /**
170- * Assert that model has the given `HasMany` relation.
170+ * Assert that the model has the given `HasMany` relation.
171171 *
172172 * @param string $class
173173 * @param string $relation
@@ -193,7 +193,7 @@ protected function assertEloquentHasMany(string $class, string $relation)
193193 }
194194
195195 /**
196- * Assert that model has `create` method for the given `HasMany` relation.
196+ * Assert that the model has `create` method for the given `HasMany` relation.
197197 *
198198 * @param string $class
199199 * @param string $relation
@@ -223,7 +223,7 @@ protected function assertEloquentHasCreateFor(string $class, string $relation, s
223223 }
224224
225225 /**
226- * Assert that model has `createMany` method for the given `HasMany` relation.
226+ * Assert that the model has `createMany` method for the given `HasMany` relation.
227227 *
228228 * @param string $class
229229 * @param string $relation
@@ -255,7 +255,7 @@ protected function assertEloquentHasCreateManyFor(string $class, string $relatio
255255 }
256256
257257 /**
258- * Assert that model has the given `BelongsTo` relation.
258+ * Assert that the model has the given `BelongsTo` relation.
259259 *
260260 * @param string $class
261261 * @param string $relation
0 commit comments