Skip to content

Commit

Permalink
qa: use native types instead of annotations
Browse files Browse the repository at this point in the history
Per @Ocramius

Signed-off-by: Matthew Weier O'Phinney <[email protected]>
  • Loading branch information
weierophinney committed Jul 10, 2023
1 parent 7cc6aa3 commit 343ab1f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/ApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace LaminasTest\ApiTools;

use Exception;
use Interop\Container\ContainerInterface;
use Laminas\ApiTools\Application;
use Laminas\EventManager\EventInterface;
use Laminas\EventManager\EventManager;
Expand All @@ -15,6 +14,7 @@
use PHPUnit\Framework\TestCase;
use Prophecy\PhpUnit\ProphecyTrait;
use Prophecy\Prophecy\ObjectProphecy;
use Psr\Container\ContainerInterface;
use ReflectionException;
use ReflectionMethod;
use ReflectionProperty;
Expand All @@ -23,11 +23,9 @@ class ApplicationTest extends TestCase
{
use ProphecyTrait;

/** @var ContainerInterface|ObjectProphecy */
protected $services;
protected ContainerInterface|ObjectProphecy $services;

/** @var Application */
protected $app;
protected Application $app;

protected function setUp(): void
{
Expand Down

0 comments on commit 343ab1f

Please sign in to comment.