Skip to content

Commit f292215

Browse files
authored
Merge pull request #34 from php-school/ux
Ux
2 parents f98cc69 + 3e58130 commit f292215

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/bootstrap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
use PhpSchool\PHP8Appreciate\Exercise\StringifyToDemystify;
3535
use PhpSchool\PhpWorkshop\Application;
3636

37-
$app = new Application('PHP8 Appreciate', __DIR__ . '/config.php');
37+
$app = new Application('', __DIR__ . '/config.php');
3838

3939
$app->addExercise(AMatchMadeInHeaven::class);
4040
$app->addExercise(HaveTheLastSay::class);
@@ -53,7 +53,7 @@
5353
$art = <<<ART
5454
________ ___ ___ ________ ________
5555
|\ __ \|\ \|\ \|\ __ \ |\ __ \
56-
\ \ \|\ \ \ \\\ \ \ \|\ \ \ \ \|\ \
56+
\ \ \|\ \ \ \_\ \ \ \|\ \ \ \ \|\ \
5757
\ \ ____\ \ __ \ \ ____\ \ \ __ \
5858
\ \ \___|\ \ \ \ \ \ \___| \ \ \|\ \
5959
\ \__\ \ \__\ \__\ \__\ \ \_______\

src/Exercise/AMatchMadeInHeaven.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function __construct(private Parser $parser)
3636

3737
public function getName(): string
3838
{
39-
return 'A Match Made In Heaven';
39+
return 'A Match Made in Heaven';
4040
}
4141

4242
public function getDescription(): string

src/Exercise/ASafeSpaceForNulls.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function __construct(private Parser $parser, private FakerGenerator $fake
4747

4848
public function getName(): string
4949
{
50-
return 'A Safe Space For Nulls';
50+
return 'A Safe Space for Nulls';
5151
}
5252

5353
public function getDescription(): string

src/Exercise/UniteTheTypes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function __construct(private Parser $parser, private FakerGenerator $fake
3434

3535
public function getName(): string
3636
{
37-
return 'Unite The Types';
37+
return 'Unite the Types';
3838
}
3939

4040
public function getDescription(): string

0 commit comments

Comments
 (0)