From c62c126b81deee71f8abdb8fc748c889987aa6eb Mon Sep 17 00:00:00 2001 From: fiachra mcdermott Date: Mon, 21 Jun 2021 18:39:48 -0700 Subject: [PATCH] chore: ignore deprecated warnings for now --- src/Handlers/Application/ContainerHandler.php | 3 +++ src/Handlers/Eloquent/ModelPropertyHandler.php | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/Handlers/Application/ContainerHandler.php b/src/Handlers/Application/ContainerHandler.php index 371315e..3c3da34 100644 --- a/src/Handlers/Application/ContainerHandler.php +++ b/src/Handlers/Application/ContainerHandler.php @@ -23,6 +23,9 @@ use function array_merge; use function array_values; use function strtolower; +/** + * @psalm-suppress DeprecatedInterface + */ final class ContainerHandler implements AfterClassLikeVisitInterface, FunctionReturnTypeProviderInterface, MethodReturnTypeProviderInterface { /** diff --git a/src/Handlers/Eloquent/ModelPropertyHandler.php b/src/Handlers/Eloquent/ModelPropertyHandler.php index 465be6c..4a11598 100644 --- a/src/Handlers/Eloquent/ModelPropertyHandler.php +++ b/src/Handlers/Eloquent/ModelPropertyHandler.php @@ -16,6 +16,9 @@ use Psalm\StatementsSource; use function in_array; use function str_replace; +/** + * @psalm-suppress DeprecatedInterface + */ class ModelPropertyHandler implements \Psalm\Plugin\Hook\PropertyExistenceProviderInterface, \Psalm\Plugin\Hook\PropertyVisibilityProviderInterface,