Skip to content

Commit 10686e8

Browse files
committed
refactor: update source classes to use simplified App namespace
1 parent 497760d commit 10686e8

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

web/app/src/Foo.php

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
<?php
22

3-
/**
4-
* I belong to a file
5-
*/
3+
declare(strict_types=1);
64

7-
namespace App\Acme;
5+
namespace App;
86

9-
/**
10-
* I belong to a class
11-
*/
127
class Foo
138
{
149
/**
1510
* Gets the name of the application.
1611
*/
1712
public function getName()
1813
{
19-
return 'Nginx PHP MySQL';
14+
return 'Docker Nginx PHP MySQL';
2015
}
2116
}

0 commit comments

Comments
 (0)