File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -268,10 +268,10 @@ protected function assertColumn($method, $args)
268
268
* Assert a condition is false alias.
269
269
*
270
270
* @param bool $condition
271
- * @param string $message
271
+ * @param string|null $message
272
272
* @return $this
273
273
*/
274
- protected function assertFalse ($ condition , $ message )
274
+ protected function assertFalse ($ condition , $ message = null )
275
275
{
276
276
$ this ->context ->assertFalse ($ condition , $ message );
277
277
@@ -282,10 +282,10 @@ protected function assertFalse($condition, $message)
282
282
* Assert a condition is true alias.
283
283
*
284
284
* @param bool $condition
285
- * @param string $message
285
+ * @param string|null $message
286
286
* @return $this
287
287
*/
288
- protected function assertTrue ($ condition , $ message )
288
+ protected function assertTrue ($ condition , $ message = null )
289
289
{
290
290
$ this ->context ->assertTrue ($ condition , $ message );
291
291
You can’t perform that action at this time.
0 commit comments