Skip to content

Commit

Permalink
Make StyleCI happy
Browse files Browse the repository at this point in the history
  • Loading branch information
John Rivs committed Oct 27, 2020
1 parent afca837 commit 56bf628
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Testing/TestResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public function assertSeeText($value, $escape = true)
if (is_array($value)) {
$values = $escape ? array_map('e', ($value)) : $value;

tap(strip_tags($this->getContent()), function($content) use($values) {
tap(strip_tags($this->getContent()), function ($content) use ($values) {
foreach ($values as $value) {
PHPUnit::assertStringContainsString((string) $value, $content);
}
Expand Down Expand Up @@ -506,7 +506,7 @@ public function assertDontSeeText($value, $escape = true)
if (is_array($value)) {
$values = $escape ? array_map('e', ($value)) : $value;

tap(strip_tags($this->getContent()), function($content) use($values) {
tap(strip_tags($this->getContent()), function ($content) use ($values) {
foreach ($values as $value) {
PHPUnit::assertStringNotContainsString((string) $value, $content);
}
Expand Down

0 comments on commit 56bf628

Please sign in to comment.