Skip to content

Commit

Permalink
qa: no need to initialize to null for nullable properties
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Weier O'Phinney <matthew@weierophinney.net>
  • Loading branch information
weierophinney committed Jul 11, 2023
1 parent 8360be4 commit 67b79d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/CollectionIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,25 +55,25 @@ class CollectionIntegrationTest extends TestCase
private $linksHelper;

/** @var null|HelperPluginManager */
private $helpers = null;
private $helpers;

/** @var null|HalJsonRenderer */
private $renderer = null;
private $renderer;

/** @var null|TreeRouteStack|V2TreeRouteStack */
private $router = null;
private $router;

/** @var null|Request */
private $request = null;
private $request;

/** @var null|Response */
private $response = null;
private $response;

/** @var RouteMatch|V2RouteMatch */
private $matches;

/** @var null|TestAsset\CollectionIntegrationListener */
private $listeners = null;
private $listeners;

/** @var RestController */
private $controller;
Expand Down

0 comments on commit 67b79d4

Please sign in to comment.