From 55a484dc208a9cd0ed67cfcd9976694e19cb45eb Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 20 Aug 2019 13:58:36 +0200 Subject: [PATCH] cs fix --- .../Tests/LazyProxy/PhpDumper/ProxyDumperTest.php | 1 - .../Bundle/FrameworkBundle/Console/Descriptor/Descriptor.php | 2 +- .../Component/DependencyInjection/Dumper/YamlDumper.php | 4 +--- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Bridge/ProxyManager/Tests/LazyProxy/PhpDumper/ProxyDumperTest.php b/src/Symfony/Bridge/ProxyManager/Tests/LazyProxy/PhpDumper/ProxyDumperTest.php index 40565a90a7..cb9dfe950c 100644 --- a/src/Symfony/Bridge/ProxyManager/Tests/LazyProxy/PhpDumper/ProxyDumperTest.php +++ b/src/Symfony/Bridge/ProxyManager/Tests/LazyProxy/PhpDumper/ProxyDumperTest.php @@ -12,7 +12,6 @@ namespace Symfony\Bridge\ProxyManager\Tests\LazyProxy\PhpDumper; use PHPUnit\Framework\TestCase; -use ProxyManager\Version; use Symfony\Bridge\ProxyManager\LazyProxy\PhpDumper\ProxyDumper; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Definition; diff --git a/src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/Descriptor.php b/src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/Descriptor.php index 91648f08bc..23d9ccc777 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/Descriptor.php +++ b/src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/Descriptor.php @@ -164,7 +164,7 @@ abstract class Descriptor implements DescriptorInterface /** * Describes a callable. * - * @param callable $callable + * @param mixed $callable */ abstract protected function describeCallable($callable, array $options = []); diff --git a/src/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php b/src/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php index be6bf5a722..1e795c7daf 100644 --- a/src/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php +++ b/src/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php @@ -228,9 +228,7 @@ class YamlDumper extends Dumper /** * Dumps callable to YAML format. * - * @param callable $callable - * - * @return callable + * @param mixed $callable */ private function dumpCallable($callable) {