Skip to content

Commit 371d9ea

Browse files
authored
fix(view): support <x-component> in auto-registered components (#1018)
1 parent 2e24641 commit 371d9ea

17 files changed

+67
-3
lines changed

src/Tempest/Router/src/Input/InputStream.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tempest\Router\Input;
46

57
interface InputStream

src/Tempest/Router/src/Input/InputStreamInitializer.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tempest\Router\Input;
46

57
use Tempest\Container\Container;

src/Tempest/Router/src/Input/StdinInputStream.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tempest\Router\Input;
46

57
use function Tempest\Support\str;

src/Tempest/Validation/src/SkipValidation.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tempest\Validation;
46

57
use Attribute;

src/Tempest/Validation/tests/Fixtures/ObjectWithObjectProperty.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tempest\Validation\Tests\Fixtures;
46

57
final class ObjectWithObjectProperty

src/Tempest/Validation/tests/Fixtures/ObjectWithSkipValidation.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tempest\Validation\Tests\Fixtures;
46

57
use Tempest\Validation\SkipValidation;

src/Tempest/Validation/tests/Fixtures/ObjectWithStringProperty.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tempest\Validation\Tests\Fixtures;
46

57
final class ObjectWithStringProperty

src/Tempest/Validation/tests/Fixtures/ValidateObjectA.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tempest\Validation\Tests\Fixtures;
46

57
final class ValidateObjectA

src/Tempest/Validation/tests/Fixtures/ValidateObjectB.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tempest\Validation\Tests\Fixtures;
46

57
use Tempest\Validation\Rules\Length;

src/Tempest/Validation/tests/Fixtures/ValidateObjectC.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tempest\Validation\Tests\Fixtures;
46

57
use Tempest\Validation\Rules\Email;

0 commit comments

Comments
 (0)