Skip to content

Commit

Permalink
Fix namespace after refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusjp committed Oct 27, 2023
1 parent c54d551 commit 0b35275
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Actions/GetClassForConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace CoderG33k\Actions;
namespace Coderg33k\TypedConfigGenerator\Actions;

use CoderG33k\TypedConfig;
use Illuminate\Support\Str;
Expand Down
2 changes: 1 addition & 1 deletion src/Actions/GetConfigsForPredeterminedPackage.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace CoderG33k\Actions;
namespace Coderg33k\TypedConfigGenerator\Actions;

use CoderG33k\Enums\Package;

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

declare(strict_types=1);

namespace CoderG33k\Console\Commands;
namespace Coderg33k\TypedConfigGenerator\Console\Commands;

use CoderG33k\Actions\GetConfigsForPredeterminedPackage;
use CoderG33k\Enums\Package;
Expand Down
2 changes: 1 addition & 1 deletion src/Enums/Package.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace CoderG33k\Enums;
namespace Coderg33k\TypedConfigGenerator\Enums;

enum Package: string
{
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/ArrayFlatMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace CoderG33k\Helper;
namespace Coderg33k\TypedConfigGenerator\Helper;

final class ArrayFlatMap
{
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/DoesTypedConfigClassExist.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace CoderG33k\Helper;
namespace Coderg33k\TypedConfigGenerator\Helper;

use CoderG33k\Actions\GetClassForConfig;
use CoderG33k\TypedConfig;
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/GetNamespaceOfClassFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace CoderG33k\Helper;
namespace Coderg33k\TypedConfigGenerator\Helper;

final class GetNamespaceOfClassFile
{
Expand Down

0 comments on commit 0b35275

Please sign in to comment.