Skip to content

Commit

Permalink
Align Namespace
Browse files Browse the repository at this point in the history
- fixes #6
  • Loading branch information
WorksDev committed Sep 23, 2019
1 parent 70361cf commit 887bae2
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
},
"autoload": {
"psr-4": {
"Scn\\HydratorProperties\\": "src/"
"Scn\\HydratorPropertyValues\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scn\\HydratorProperties\\": "tests/"
"Scn\\HydratorPropertyValues\\": "tests/"
}
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/Property/BooleanValue.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Scn\HydratorProperties\Property;
namespace Scn\HydratorPropertyValues\Property;

final class BooleanValue implements PropertyInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Property/FloatValue.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Scn\HydratorProperties\Property;
namespace Scn\HydratorPropertyValues\Property;

final class FloatValue implements PropertyInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Property/IntegerValue.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Scn\HydratorProperties\Property;
namespace Scn\HydratorPropertyValues\Property;

final class IntegerValue implements PropertyInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Property/PropertyInterface.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Scn\HydratorProperties\Property;
namespace Scn\HydratorPropertyValues\Property;

interface PropertyInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Property/StringValue.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Scn\HydratorProperties\Property;
namespace Scn\HydratorPropertyValues\Property;

final class StringValue implements PropertyInterface
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Property/BooleanValueTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Scn\HydratorProperties\Property;
namespace Scn\HydratorPropertyValues\Property;

use Scn\HydratorProperties\TestCase;
use Scn\HydratorPropertyValues\TestCase;

class BooleanValueTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Property/FloatValueTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Scn\HydratorProperties\Property;
namespace Scn\HydratorPropertyValues\Property;

use Scn\HydratorProperties\TestCase;
use Scn\HydratorPropertyValues\TestCase;

class FloatValueTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Property/IntegerValueTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Scn\HydratorProperties\Property;
namespace Scn\HydratorPropertyValues\Property;

use Scn\HydratorProperties\TestCase;
use Scn\HydratorPropertyValues\TestCase;

class IntegerValueTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Property/StringValueTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Scn\HydratorProperties\Property;
namespace Scn\HydratorPropertyValues\Property;

use Scn\HydratorProperties\TestCase;
use Scn\HydratorPropertyValues\TestCase;

class StringValueTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Scn\HydratorProperties;
namespace Scn\HydratorPropertyValues;

class TestCase extends \PHPUnit\Framework\TestCase
{
Expand Down

0 comments on commit 887bae2

Please sign in to comment.