chore: coding style changes

This commit is contained in:
nuno maduro
2026-08-07 14:52:56 +01:00
parent eb88513baf
commit 42d9b777bf
221 changed files with 139 additions and 3086 deletions
-5
View File
@@ -12,11 +12,6 @@ use Pest\Plugin\Loader;
*/
final class CallsAddsOutput
{
/**
* Executes the Plugin action.
*
* Provides an opportunity for any plugins that want to provide additional output after test execution.
*/
public static function execute(int $exitCode): int
{
$plugins = Loader::getPlugins(Plugins\AddsOutput::class);
-5
View File
@@ -12,11 +12,6 @@ use Pest\Plugin\Loader;
*/
final class CallsBoot
{
/**
* Executes the Plugin action.
*
* Provides an opportunity for any plugins to boot.
*/
public static function execute(): void
{
$plugins = Loader::getPlugins(Plugins\Bootable::class);
@@ -13,10 +13,6 @@ use Pest\Plugin\Loader;
final class CallsHandleArguments
{
/**
* Executes the Plugin action.
*
* Transform the input arguments by passing it to the relevant plugins.
*
* @param array<int, string> $argv
* @return array<int, string>
*/
@@ -13,10 +13,6 @@ use Pest\Plugin\Loader;
final class CallsHandleOriginalArguments
{
/**
* Executes the Plugin action.
*
* Transform the input arguments by passing it to the relevant plugins.
*
* @param array<int, string> $argv
*/
public static function execute(array $argv): void
-5
View File
@@ -12,11 +12,6 @@ use Pest\Plugin\Loader;
*/
final class CallsTerminable
{
/**
* Executes the Plugin action.
*
* Provides an opportunity for any plugins to terminate.
*/
public static function execute(): void
{
$plugins = Loader::getPlugins(Plugins\Terminable::class);