Added some missing return types

This commit is contained in:
Chris Kankiewicz
2020-01-06 15:02:37 -07:00
parent e04399010a
commit 435cfe450d
2 changed files with 2 additions and 2 deletions

View File

@@ -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))();

View File

@@ -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);