chore: style changes

This commit is contained in:
Nuno Maduro
2024-08-02 11:53:24 +01:00
parent 6a8a4f3243
commit 5e41e546a0
57 changed files with 131 additions and 131 deletions

View File

@ -37,7 +37,7 @@ final class Coverage
*/
public static function isAvailable(): bool
{
$runtime = new Runtime();
$runtime = new Runtime;
if (! $runtime->canCollectCodeCoverage()) {
return false;
@ -67,7 +67,7 @@ final class Coverage
*/
public static function usingXdebug(): bool
{
return (new Runtime())->hasXdebug();
return (new Runtime)->hasXdebug();
}
/**