Skip to content

Commit 279c048

Browse files
committed
Fix coding standard
1 parent ebcec7d commit 279c048

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Preloader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ public function listPackagesFiles(bool $setClasses = true) : array
133133

134134
protected function isDevelopmentClass(string $className) : bool
135135
{
136-
return \str_starts_with($className, 'Framework\\CodingStandard\\')
137-
|| \str_starts_with($className, 'Framework\\Testing\\');
136+
return \str_starts_with($className, 'Framework\CodingStandard\\')
137+
|| \str_starts_with($className, 'Framework\Testing\\');
138138
}
139139

140140
/**

tests/support/ReturnObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10-
return new class() extends \stdClass {
10+
return new class() extends stdClass {
1111
};

0 commit comments

Comments
 (0)