Skip to content

Commit 2d350ba

Browse files
committed
fix: correct CodelyTv namespace
1 parent fabc639 commit 2d350ba

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
```
3030
2. Add it to your `ecs.php` file:
3131
```php
32-
use Codelytv\CodingStyle\CodelyRules;
32+
use CodelyTv\CodingStyle\CodelyRules;
3333
use Symplify\EasyCodingStandard\Config\ECSConfig;
3434
3535
return function (ECSConfig $ecsConfig): void {

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"license": "AGPL-3.0-or-later",
77
"autoload": {
88
"psr-4": {
9-
"Codelytv\\CodingStyle\\": "src/"
9+
"CodelyTv\\CodingStyle\\": "src/"
1010
}
1111
},
1212
"require": {

ecs.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
use Codelytv\CodingStyle\CodelyRules;
5+
use CodelyTv\CodingStyle\CodelyRules;
66
use Symplify\EasyCodingStandard\Config\ECSConfig;
77

88
return function (ECSConfig $ecsConfig): void {

src/CodelyRules.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Codelytv\CodingStyle;
5+
namespace CodelyTv\CodingStyle;
66

77
final class CodelyRules
88
{

0 commit comments

Comments
 (0)