From 99a8ef5a378721c1dfc811c0a717005cc8f70d17 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 14 Jan 2021 21:47:05 +0100 Subject: [PATCH] [VarDumper] Fix tests --- .../Tests/Fixtures/RepeatableAttribute.php | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/Symfony/Component/VarDumper/Tests/Fixtures/RepeatableAttribute.php diff --git a/src/Symfony/Component/VarDumper/Tests/Fixtures/RepeatableAttribute.php b/src/Symfony/Component/VarDumper/Tests/Fixtures/RepeatableAttribute.php deleted file mode 100644 index 49aac9fc50..0000000000 --- a/src/Symfony/Component/VarDumper/Tests/Fixtures/RepeatableAttribute.php +++ /dev/null @@ -1,28 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\VarDumper\Tests\Fixtures; - -#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_CLASS_CONST | \Attribute::TARGET_PROPERTY)] -final class RepeatableAttribute -{ - private string $string; - - public function __construct(string $string = 'default') - { - $this->string = $string; - } - - public function getString(): string - { - return $this->string; - } -}