chore: moves to coding stlye

This commit is contained in:
nuno maduro
2026-07-19 03:41:57 +01:00
parent cd0e921158
commit 1c11595504
10 changed files with 17 additions and 23 deletions
+4 -2
View File
@@ -1,12 +1,14 @@
<?php
declare(strict_types=1);
use Pest\Plugin;
trait PluginTrait
{
public function assertPluginTraitGotRegistered(): void
{
$this->assertTrue(true);
expect(true)->toBeTrue();
}
}
@@ -14,7 +16,7 @@ trait SecondPluginTrait
{
public function assertSecondPluginTraitGotRegistered(): void
{
$this->assertTrue(true);
expect(true)->toBeTrue();
}
}