mirror of
https://github.com/DirectoryLister/DirectoryLister.git
synced 2025-09-02 02:12:37 +02:00
Added some missing return types
This commit is contained in:
@@ -9,7 +9,7 @@ use Tests\TestCase;
|
||||
|
||||
class AppManangerTest extends TestCase
|
||||
{
|
||||
public function test_it_returns_an_app_instance()
|
||||
public function test_it_returns_an_app_instance(): void
|
||||
{
|
||||
$callableResolver = $this->container->get(CallableResolver::class);
|
||||
$app = (new AppManager($this->container, $this->config, $callableResolver))();
|
||||
|
@@ -57,7 +57,7 @@ class DirectoryControllerTest extends TestCase
|
||||
$this->assertEquals(200, $response->getStatusCode());
|
||||
}
|
||||
|
||||
public function test_it_returns_a_404_error_when_not_found()
|
||||
public function test_it_returns_a_404_error_when_not_found(): void
|
||||
{
|
||||
$this->container->call(TwigProvider::class);
|
||||
|
||||
|
Reference in New Issue
Block a user