Skip to content

Commit

Permalink
Changed: Changed app source code directory from "src" to "app"
Browse files Browse the repository at this point in the history
  • Loading branch information
merloxx committed Dec 16, 2024
1 parent 2d77e52 commit 0ce7d9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Application implements ApplicationInterface
/**
* @var string
*/
protected string $appPath = 'src';
protected string $appPath = 'app';

/**
* @var string
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/ApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@ public function testGetRootPath(): void

public function testGetAppPath(): void
{
self::assertSame($this->rootPath . '/src', $this->application->getAppPath());
self::assertSame($this->rootPath . '/app', $this->application->getAppPath());
}

public function testGetAppPathAppendPath(): void
{
self::assertSame($this->rootPath . '/src/Foo', $this->application->getAppPath('Foo'));
self::assertSame($this->rootPath . '/app/Foo', $this->application->getAppPath('Foo'));
}

public function testSetAppPath(): void
Expand Down

0 comments on commit 0ce7d9d

Please sign in to comment.