Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed May 18, 2024
1 parent 575921d commit 56d55d0
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

use PHPStan\Type\ObjectType;
use PHPStan\Type\MixedType;
use PHPStan\Type\NullType;
use PHPStan\Type\ObjectType;
use PHPStan\Type\StringType;
use PHPStan\Type\UnionType;
use PHPStan\Type\VoidType;
Expand Down Expand Up @@ -35,10 +35,6 @@
),
new AddReturnTypeDeclaration(DataTransformerInterface::class, 'transform', new MixedType()),
new AddReturnTypeDeclaration(FormTypeInterface::class, 'getParent', $nullableStringType),
new AddReturnTypeDeclaration(
FolderInterface::class,
'create',
$nullableObjectType
),
new AddReturnTypeDeclaration(FolderInterface::class, 'create', $nullableObjectType),
]);
};

0 comments on commit 56d55d0

Please sign in to comment.