Skip to content

Commit 9895554

Browse files
committed
ITT: Formatted.
1 parent 19865f2 commit 9895554

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Asserts/EloquentAsserts.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ protected function assertEloquentTableNotEquals($class, $table)
2121

2222
protected function assertEloquentIsIncrementing($class)
2323
{
24-
$message = "Failed asserting that Eloquent model has incrementing primary key.";
24+
$message = 'Failed asserting that Eloquent model has incrementing primary key.';
2525
$this->assertTrue((new $class)->getIncrementing(), $message);
2626
}
2727

2828
protected function assertEloquentIsNotIncrementing($class)
2929
{
30-
$message = "Failed asserting that Eloquent model has not incrementing primary key.";
30+
$message = 'Failed asserting that Eloquent model has not incrementing primary key.';
3131
$this->assertFalse((new $class)->getIncrementing(), $message);
3232
}
3333

0 commit comments

Comments
 (0)