FIX: self -> static

This commit is contained in:
2021-08-01 20:31:49 -04:00
parent 643c3e714f
commit 293b5af3ff
2 changed files with 10 additions and 14 deletions

View File

@ -12,6 +12,6 @@ interface Model {
public function toArray(): array;
public static function add(ModelFactory $factory, $input): bool;
public static function add(ModelFactory $factory, $input): ?Model;
public function edit($input): bool;
}