From 546b1146c4bf5b64cfd7857e0d83ec918b3b14f2 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 8 Apr 2019 07:16:00 +0200 Subject: [PATCH] fixed CS --- .../Component/DependencyInjection/Argument/BoundArgument.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Argument/BoundArgument.php b/src/Symfony/Component/DependencyInjection/Argument/BoundArgument.php index 2c777a16fa..4a0054e20b 100644 --- a/src/Symfony/Component/DependencyInjection/Argument/BoundArgument.php +++ b/src/Symfony/Component/DependencyInjection/Argument/BoundArgument.php @@ -53,7 +53,7 @@ final class BoundArgument implements ArgumentInterface */ public function setValues(array $values) { - if (5 === count($values)) { + if (5 === \count($values)) { list($this->value, $this->identifier, $this->used, $this->type, $this->file) = $values; } else { list($this->value, $this->identifier, $this->used) = $values;