Skip to content

Commit b7d9768

Browse files
committed
Apply fixes from StyleCI
1 parent 2e07782 commit b7d9768

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

tests/Support/SupportStringableTest.php

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -948,16 +948,15 @@ public function testPadRight()
948948

949949
public function testExplode()
950950
{
951-
$this->assertInstanceOf(Collection::class, $this->stringable("Foo Bar Baz")->explode(" "));
952-
953-
$this->assertSame('["Foo","Bar","Baz"]', (string) $this->stringable("Foo Bar Baz")->explode(" "));
954-
955-
// with limit
956-
$this->assertSame('["Foo","Bar Baz"]', (string) $this->stringable("Foo Bar Baz")->explode(" ", 2));
957-
$this->assertSame('["Foo","Bar"]', (string) $this->stringable("Foo Bar Baz")->explode(" ", -1));
951+
$this->assertInstanceOf(Collection::class, $this->stringable('Foo Bar Baz')->explode(' '));
952+
953+
$this->assertSame('["Foo","Bar","Baz"]', (string) $this->stringable('Foo Bar Baz')->explode(' '));
958954

955+
// with limit
956+
$this->assertSame('["Foo","Bar Baz"]', (string) $this->stringable('Foo Bar Baz')->explode(' ', 2));
957+
$this->assertSame('["Foo","Bar"]', (string) $this->stringable('Foo Bar Baz')->explode(' ', -1));
959958
}
960-
959+
961960
public function testChunk()
962961
{
963962
$chunks = $this->stringable('foobarbaz')->split(3);

0 commit comments

Comments
 (0)