Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Illuminate/Foundation/Testing/Constraints/SeeInOrder.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function __construct($content)
* @param array $values
* @return bool
*/
public function matches($values) : bool
public function matches($values): bool
{
$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): string
{
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(): string
{
return (new ReflectionClass($this))->name;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Foundation/Http/Middleware/TrimStringsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class TrimStringsTest extends TestCase
{
public function testTrimStringsIgnoringExceptAttribute() : void
public function testTrimStringsIgnoringExceptAttribute(): void
{
$middleware = new TrimStringsWithExceptAttribute();
$symfonyRequest = new SymfonyRequest([
Expand Down