Skip to content

Commit afcfcf2

Browse files
Revert "Update SeeInOrder.php"
This reverts commit 25fa67b.
1 parent 25fa67b commit afcfcf2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Illuminate/Foundation/Testing/Constraints/SeeInOrder.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct($content)
3838
* @param array $values
3939
* @return bool
4040
*/
41-
public function matches($values)
41+
public function matches($values): bool
4242
{
4343
$position = 0;
4444

@@ -67,7 +67,7 @@ public function matches($values)
6767
* @param array $values
6868
* @return string
6969
*/
70-
public function failureDescription($values)
70+
public function failureDescription($values): string
7171
{
7272
return sprintf(
7373
'Failed asserting that \'%s\' contains "%s" in specified order.',
@@ -81,7 +81,7 @@ public function failureDescription($values)
8181
*
8282
* @return string
8383
*/
84-
public function toString()
84+
public function toString(): string
8585
{
8686
return (new ReflectionClass($this))->name;
8787
}

0 commit comments

Comments
 (0)