diff --git a/src/Contracts/GeneratesCodeListener.php b/src/Contracts/GeneratesCodeListener.php index a527baa..ca8e490 100644 --- a/src/Contracts/GeneratesCodeListener.php +++ b/src/Contracts/GeneratesCodeListener.php @@ -6,8 +6,6 @@ interface GeneratesCodeListener { /** * Code already exists. - * - * @return mixed */ public function codeAlreadyExists(string $className): mixed; @@ -18,8 +16,6 @@ public function generatingCode(string $stub, string $className): string; /** * Code successfully generated. - * - * @return mixed */ public function codeHasBeenGenerated(string $className): mixed; diff --git a/src/Presets/Preset.php b/src/Presets/Preset.php index 9081f49..933b04a 100644 --- a/src/Presets/Preset.php +++ b/src/Presets/Preset.php @@ -33,7 +33,6 @@ public function is(string $name): bool * Get configuration. * * @param mixed|null $default - * @return mixed */ public function config(?string $key = null, $default = null) { diff --git a/src/TestGenerator.php b/src/TestGenerator.php index f8f219d..2c4f453 100644 --- a/src/TestGenerator.php +++ b/src/TestGenerator.php @@ -8,9 +8,6 @@ trait TestGenerator { /** * Create the matching test case if requested. - * - * @param string $path - * @return bool */ protected function handleTestCreationUsingCanvas(string $path): bool {