Skip to content

Commit

Permalink
Update SeeInOrder.php
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Jan 3, 2020
1 parent f675964 commit 25fa67b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Illuminate/Foundation/Testing/Constraints/SeeInOrder.php
Expand Up @@ -38,7 +38,7 @@ public function __construct($content)
* @param array $values
* @return bool
*/
public function matches($values): bool
public function matches($values)
{
$position = 0;

Expand Down Expand Up @@ -67,7 +67,7 @@ public function matches($values): bool
* @param array $values
* @return string
*/
public function failureDescription($values): string
public function failureDescription($values)
{
return sprintf(
'Failed asserting that \'%s\' contains "%s" in specified order.',
Expand All @@ -81,7 +81,7 @@ public function failureDescription($values): string
*
* @return string
*/
public function toString(): string
public function toString()
{
return (new ReflectionClass($this))->name;
}
Expand Down

0 comments on commit 25fa67b

Please sign in to comment.