Merge branch '5.0'

* 5.0:
  [DI] fix CheckTypeDeclarationsPass
This commit is contained in:
Nicolas Grekas 2020-01-31 10:49:48 +01:00
commit 44e86a3f96

View File

@ -233,11 +233,11 @@ final class CheckTypeDeclarationsPass extends AbstractRecursivePass
return; return;
} }
if ('string' === $type && \is_callable([$class, '__toString'])) { if ('string' === $type && method_exists($class, '__toString')) {
return; return;
} }
if ('callable' === $type && (\Closure::class === $class || \is_callable([$class, '__invoke']))) { if ('callable' === $type && (\Closure::class === $class || method_exists($class, '__invoke'))) {
return; return;
} }