Skip to content

Commit

Permalink
Fixed missing strict types declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
Steveb-p committed Nov 15, 2024
1 parent 21c8f00 commit ccb944e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/contracts/Validation/AbstractValidationStructWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);

namespace Ibexa\Contracts\Core\Validation;

use Symfony\Component\Validator\Constraints as Assert;
Expand Down
2 changes: 2 additions & 0 deletions src/contracts/Validation/StructWrapperValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);

namespace Ibexa\Contracts\Core\Validation;

use Symfony\Component\Validator\ConstraintViolation;
Expand Down
2 changes: 2 additions & 0 deletions src/contracts/Validation/ValidationStructWrapperInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);

namespace Ibexa\Contracts\Core\Validation;

/**
Expand Down
2 changes: 2 additions & 0 deletions tests/lib/Validation/StructWrapperValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);

namespace Ibexa\Tests\Core\Validation;

use Ibexa\Contracts\Core\Validation\StructWrapperValidator;
Expand Down

0 comments on commit ccb944e

Please sign in to comment.