apply phpstan recommendations to API classes

This commit is contained in:
Spine
2025-02-24 14:37:56 +01:00
parent 88823a846a
commit e81e5caedf
10 changed files with 36 additions and 90 deletions
+1 -1
View File
@@ -7,5 +7,5 @@ abstract class AbstractAPI extends \Gazelle\Base {
protected array $config,
) {}
abstract public function run();
abstract public function run(): array;
}