8000 Update uuid and add comments · symfonyaml/symfony@b76a6fb · GitHub
[go: up one dir, main page]

Skip to content

Commit b76a6fb

Browse files
author
symfonyaml
committed
Update uuid and add comments
1 parent dad8674 commit b76a6fb

File tree

3 files changed

+19
-13
lines changed

3 files changed

+19
-13
lines changed

src/Symfony/Component/Validator/Constraints/Video.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
1919
#[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
2020
class Video extends File
2121
{
22-
public const SIZE_NOT_DETECTED_ERROR = '6d55c3f4-e58e-4fe3-91ee-74b492199956';
23-
public const TOO_WIDE_ERROR = '7f87163d-878f-47f5-99ba-a8eb723a1ab2';
24-
public const TOO_NARROW_ERROR = '9afbd561-4f90-4a27-be62-1780fc43604a';
25-
public const TOO_HIGH_ERROR = '7efae81c-4877-47ba-aa65-d01ccb0d4645';
26-
public const TOO_LOW_ERROR = 'aef0cb6a-c07f-4894-bc08-1781420d7b4c';
27-
public const TOO_FEW_PIXEL_ERROR = '1b06b97d-ae48-474e-978f-038a74854c43';
28-
public const TOO_MANY_PIXEL_ERROR = 'ee0804e8-44db-4eac-9775-be91aaf72ce1';
29-
public const RATIO_TOO_BIG_ERROR = '70cafca6-168f-41c9-8c8c-4e47a52be643';
30-
public const RATIO_TOO_SMALL_ERROR = '59b8c6ef-bcf2-4ceb-afff-4642ed92f12e';
31-
public const SQUARE_NOT_ALLOWED_ERROR = '5d41425b-facb-47f7-a55a-de9fbe45cb46';
32-
public const LANDSCAPE_NOT_ALLOWED_ERROR = '6f895685-7cf2-4d65-b3da-9029c5581d88';
33-
public const PORTRAIT_NOT_ALLOWED_ERROR = '65608156-77da-4c79-a88c-02ef6d18c782';
34-
public const CORRUPTED_VIDEO_ERROR = '5d4163f3-648f-4e39-87fd-cc5ea7aad2d1';
22+
public const SIZE_NOT_DETECTED_ERROR = '5dab98df-43c8-481b-94f9-46a3c958285c';
23+
public const TOO_WIDE_ERROR = '9e18d6a4-aeda-4644-be8e-9e29dbfd6c4a';
24+
public const TOO_NARROW_ERROR = 'b267f54b-d994-46d4-9ca6-338fc4f7962f';
25+
public const TOO_HIGH_ERROR = '44f4c411-0199-48c2-b597-df1f5944ccde';
26+
public const TOO_LOW_ERROR = '0b6bc3ce-df90-40f9-90aa-5bbb840cb481';
27+
public const TOO_FEW_PIXEL_ERROR = '510ddf98-2eda-436e-be7e-b6f107bc0e22';
28+
public const TOO_MANY_PIXEL_ERROR = 'ff0a8ee8-951d-4c97-afe2-03c0d61a2a02';
29+
public const RATIO_TOO_BIG_ERROR = '5e6b9c21-d4d8-444d-9f4c-e3ff1e25a9a6';
30+
public const RATIO_TOO_SMALL_ERROR = '26985857-7447-49dc-b271-1477a76cc63c';
31+
public const SQUARE_NOT_ALLOWED_ERROR = '18500335-b868-4056-b2a2-aa2aeeb0cbdf';
32+
public const LANDSCAPE_NOT_ALLOWED_ERROR = 'cbf38fbc-04c0-457a-8c29-a6f3080e415a';
33+
public const PORTRAIT_NOT_ALLOWED_ERROR = '6c3e34a8-94d5-4434-9f20-fb9c0f3ab531';
34+
public const CORRUPTED_VIDEO_ERROR = '591b9c4d-d357-425f-8672-6b187816550e';
3535

3636
// Include the mapping from the base class
3737

src/Symfony/Component/Validator/Tests/Constraints/VideoTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
use Symfony\Component\Validator\Mapping\ClassMetadata;
88
use Symfony\Component\Validator\Mapping\Loader\AttributeLoader;
99

10+
/**
11+
* @author Kev <https://github.com/symfonyaml>
12+
*/
1013
class VideoTest extends TestCase
1114
{
1215
public function testAttributes()

src/Symfony/Component/Validator/Tests/Constraints/VideoValidatorTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
use Symfony\Component\Validator\Constraints\VideoValidator;
77
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
88

9+
/**
10+
* @author Kev <https://github.com/symfonyaml>
11+
*/
912
class VideoValidatorTest extends ConstraintValidatorTestCase
1013
{
1114
protected string $path;

0 commit comments

Comments
 (0)
0