Skip to content

Commit

Permalink
fix typo's
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusjp committed Oct 27, 2023
1 parent b2da6e9 commit 3c3f787
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ in the `config/app.php` file of your project:

'providers' => [
// ...
CoderG33k\TypedConfigServiceProvider::class,
Coderg33k\TypedConfigServiceProvider::class,
// ...
];
```
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Commands/stubs/typed_config/default.stub
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ declare(strict_types=1);

namespace {{ namespace }};

final readonly class {{ class }} extends \CoderG33k\TypedConfig
final readonly class {{ class }} extends \Coderg33k\TypedConfig
{
public function __construct(
{{ properties }}
Expand Down
4 changes: 2 additions & 2 deletions src/Helper/DoesTypedConfigClassExist.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

namespace Coderg33k\TypedConfigGenerator\Helper;

use CoderG33k\TypedConfigGenerator\Actions\GetClassForConfig;
use CoderG33k\TypedConfig;
use Coderg33k\TypedConfigGenerator\Actions\GetClassForConfig;
use Coderg33k\TypedConfigGenerator\TypedConfig;

final class DoesTypedConfigClassExist
{
Expand Down

0 comments on commit 3c3f787

Please sign in to comment.