Skip to content

Commit 1015d3f

Browse files
committed
Fix location
1 parent 5290248 commit 1015d3f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

app/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
use PhpSchool\PHP8Appreciate\Exercise\CautionWithCatches;
2424
use PhpSchool\PHP8Appreciate\Exercise\HaveTheLastSay;
2525
use PhpSchool\PHP8Appreciate\Exercise\PhpPromotion;
26-
use PhpSchool\PHP8AppreciateTest\Exercise\LordOfTheStrings;
26+
use PhpSchool\PHP8Appreciate\Exercise\LordOfTheStrings;
2727
use PhpSchool\PhpWorkshop\Application;
2828

2929
$app = new Application('PHP8 Appreciate', __DIR__ . '/config.php');

app/config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?php
22

3-
use PhpSchool\PHP8Appreciate\AstService;
43
use PhpSchool\PHP8Appreciate\Exercise\AMatchMadeInHeaven;
54
use PhpSchool\PHP8Appreciate\Exercise\CautionWithCatches;
65
use PhpSchool\PHP8Appreciate\Exercise\HaveTheLastSay;
76
use PhpSchool\PHP8Appreciate\Exercise\PhpPromotion;
8-
use PhpSchool\PHP8AppreciateTest\Exercise\LordOfTheStrings;
7+
use PhpSchool\PHP8Appreciate\Exercise\LordOfTheStrings;
98
use Psr\Container\ContainerInterface;
9+
1010
use function DI\create;
1111
use function DI\factory;
1212
use function DI\object;

test/Exercise/LordOfTheStrings.php renamed to src/Exercise/LordOfTheStrings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PhpSchool\PHP8AppreciateTest\Exercise;
3+
namespace PhpSchool\PHP8Appreciate\Exercise;
44

55
use Faker\Generator;
66
use PhpSchool\PhpWorkshop\Check\ComposerCheck;
@@ -99,4 +99,4 @@ public function getRequiredPackages(): array
9999
{
100100
return ['symfony/console'];
101101
}
102-
}
102+
}

0 commit comments

Comments
 (0)