Apply code style

This commit is contained in:
Shift
2022-10-24 17:25:02 +00:00
parent 045dcc7499
commit 4dac706231
19 changed files with 33 additions and 36 deletions
+2 -4
View File
@@ -61,8 +61,7 @@ class StringHelperTest extends TestCase
$this->assertFalse(StringHelpers::isStringable([]));
$this->assertFalse(StringHelpers::isStringable((object) []));
$stringable = new class
{
$stringable = new class {
public function __toString()
{
return '';
@@ -70,8 +69,7 @@ class StringHelperTest extends TestCase
};
$this->assertTrue(StringHelpers::isStringable($stringable));
$nonstringable = new class
{
$nonstringable = new class {
};
$this->assertFalse(StringHelpers::isStringable($nonstringable));
}