Skip to content

Commit 67b79d4

Browse files
committed
qa: no need to initialize to null for nullable properties
Signed-off-by: Matthew Weier O'Phinney <matthew@weierophinney.net>
1 parent 8360be4 commit 67b79d4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/CollectionIntegrationTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,25 +55,25 @@ class CollectionIntegrationTest extends TestCase
5555
private $linksHelper;
5656

5757
/** @var null|HelperPluginManager */
58-
private $helpers = null;
58+
private $helpers;
5959

6060
/** @var null|HalJsonRenderer */
61-
private $renderer = null;
61+
private $renderer;
6262

6363
/** @var null|TreeRouteStack|V2TreeRouteStack */
64-
private $router = null;
64+
private $router;
6565

6666
/** @var null|Request */
67-
private $request = null;
67+
private $request;
6868

6969
/** @var null|Response */
70-
private $response = null;
70+
private $response;
7171

7272
/** @var RouteMatch|V2RouteMatch */
7373
private $matches;
7474

7575
/** @var null|TestAsset\CollectionIntegrationListener */
76-
private $listeners = null;
76+
private $listeners;
7777

7878
/** @var RestController */
7979
private $controller;

0 commit comments

Comments
 (0)