Skip to content

Commit

Permalink
Changed namespace from Reflection to TypeReflection
Browse files Browse the repository at this point in the history
  • Loading branch information
vudaltsov committed Feb 27, 2023
1 parent 0c22e8f commit de45acb
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "php-extended-type-system/reflection",
"description": "PHP Extended Type System • Reflection",
"name": "php-extended-type-system/type-reflection",
"description": "PHP Extended Type System • Type Reflection",
"license": "MIT",
"type": "library",
"authors": [
Expand All @@ -21,7 +21,7 @@
},
"autoload": {
"psr-4": {
"PHP\\ExtendedTypeSystem\\Reflection\\": "src/"
"PHP\\ExtendedTypeSystem\\TypeReflection\\": "src/"
}
},
"config": {
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/NullTemplateReflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace PHP\ExtendedTypeSystem\Reflection;
namespace PHP\ExtendedTypeSystem\TypeReflection;

use PHP\ExtendedTypeSystem\Type\NamedObjectT;

Expand Down
2 changes: 1 addition & 1 deletion src/Template.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace PHP\ExtendedTypeSystem\Reflection;
namespace PHP\ExtendedTypeSystem\TypeReflection;

use PHP\ExtendedTypeSystem\Type\MixedT;
use PHP\ExtendedTypeSystem\Type\Type;
Expand Down
2 changes: 1 addition & 1 deletion src/TemplateReflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace PHP\ExtendedTypeSystem\Reflection;
namespace PHP\ExtendedTypeSystem\TypeReflection;

use PHP\ExtendedTypeSystem\Type\NamedObjectT;

Expand Down
2 changes: 1 addition & 1 deletion src/TypeReflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace PHP\ExtendedTypeSystem\Reflection;
namespace PHP\ExtendedTypeSystem\TypeReflection;

use PHP\ExtendedTypeSystem\Type\Type;

Expand Down
2 changes: 1 addition & 1 deletion src/TypeReflectorChain.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace PHP\ExtendedTypeSystem\Reflection;
namespace PHP\ExtendedTypeSystem\TypeReflection;

use PHP\ExtendedTypeSystem\Type\Type;

Expand Down
2 changes: 1 addition & 1 deletion src/Variance.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace PHP\ExtendedTypeSystem\Reflection;
namespace PHP\ExtendedTypeSystem\TypeReflection;

/**
* @psalm-api
Expand Down

0 comments on commit de45acb

Please sign in to comment.