Skip to content

Commit cf25c79

Browse files
committed
Turns on the green lights. Ready, set, go!
1 parent eaa28ef commit cf25c79

24 files changed

+50
-50
lines changed

phpstan-baseline.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ parameters:
7373
-
7474
message: "#^Calling eval\\(\\) is forbidden\\.$#"
7575
count: 1
76-
path: src/Tempest/Support/src/Reflection/TypeReflector.php
76+
path: src/Tempest/Reflection/src/TypeReflector.php
7777

7878
-
7979
message: "#^Access to an undefined property Tempest\\\\View\\\\GenericView\\:\\:\\$property\\.$#"

src/Tempest/Mapper/tests/Fixtures/ParentWithChildrenObject.php

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Tempest\Core\Tests;
5+
namespace Tests\Tempest\Integration\Core;
66

77
use PHPUnit\Framework\TestCase;
88
use Tempest\Container\Container;

src/Tempest/Mapper/tests/Fixtures/ChildObject.php renamed to tests/Integration/Mapper/Fixtures/ChildObject.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
declare(strict_types=1);
44

5-
namespace Tempest\Mapper\Tests\Fixtures;
5+
namespace Tests\Tempest\Integration\Mapper\Fixtures;
66

77
final class ChildObject
88
{
99
public string $name;
1010

1111
public ParentObject $parent;
1212

13-
/** @var \Tempest\Mapper\Tests\Fixtures\ParentObject[] */
13+
/** @var \Tests\Tempest\Integration\Mapper\Fixtures\ParentObject[] */
1414
public array $parentCollection;
1515
}

src/Tempest/Mapper/tests/Fixtures/DoubleStringCaster.php renamed to tests/Integration/Mapper/Fixtures/DoubleStringCaster.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Tempest\Mapper\Tests\Fixtures;
5+
namespace Tests\Tempest\Integration\Mapper\Fixtures;
66

77
use Tempest\Mapper\Caster;
88

src/Tempest/Mapper/tests/Fixtures/MyObject.php renamed to tests/Integration/Mapper/Fixtures/MyObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Tempest\Mapper\Tests\Fixtures;
5+
namespace Tests\Tempest\Integration\Mapper\Fixtures;
66

77
use Tempest\Mapper\CastWith;
88

src/Tempest/Mapper/tests/Fixtures/MyObjectCaster.php renamed to tests/Integration/Mapper/Fixtures/MyObjectCaster.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Tempest\Mapper\Tests\Fixtures;
5+
namespace Tests\Tempest\Integration\Mapper\Fixtures;
66

77
use Tempest\Mapper\Caster;
88

src/Tempest/Mapper/tests/Fixtures/ObjectA.php renamed to tests/Integration/Mapper/Fixtures/ObjectA.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Tempest\Mapper\Tests\Fixtures;
5+
namespace Tests\Tempest\Integration\Mapper\Fixtures;
66

77
use Tempest\Mapper\Strict;
88

src/Tempest/Mapper/tests/Fixtures/ObjectWithBuiltInCasters.php renamed to tests/Integration/Mapper/Fixtures/ObjectWithBuiltInCasters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Tempest\Mapper\Tests\Fixtures;
5+
namespace Tests\Tempest\Integration\Mapper\Fixtures;
66

77
use DateTime;
88
use DateTimeImmutable;

src/Tempest/Mapper/tests/Fixtures/ObjectWithDefaultValues.php renamed to tests/Integration/Mapper/Fixtures/ObjectWithDefaultValues.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Tempest\Mapper\Tests\Fixtures;
5+
namespace Tests\Tempest\Integration\Mapper\Fixtures;
66

77
final class ObjectWithDefaultValues
88
{

0 commit comments

Comments
 (0)