@@ -163,13 +163,13 @@ public function testNewImage(): void
163163
164164 public function testNewNegotiatorWithNullConfig (): void
165165 {
166- $ actual = Services::negotiator (null );
166+ $ actual = Services::negotiator ();
167167 $ this ->assertInstanceOf (Negotiate::class, $ actual );
168168 }
169169
170170 public function testNewClirequest (): void
171171 {
172- $ actual = Services::clirequest (null );
172+ $ actual = Services::clirequest ();
173173 $ this ->assertInstanceOf (CLIRequest::class, $ actual );
174174 }
175175
@@ -201,7 +201,7 @@ public function testNewUnsharedLanguage(): void
201201
202202 public function testNewPager (): void
203203 {
204- $ actual = Services::pager (null );
204+ $ actual = Services::pager ();
205205 $ this ->assertInstanceOf (Pager::class, $ actual );
206206 }
207207
@@ -225,13 +225,13 @@ public function testNewToolbar(): void
225225
226226 public function testNewUri (): void
227227 {
228- $ actual = Services::uri (null );
228+ $ actual = Services::uri ();
229229 $ this ->assertInstanceOf (URI ::class, $ actual );
230230 }
231231
232232 public function testNewValidation (): void
233233 {
234- $ actual = Services::validation (null );
234+ $ actual = Services::validation ();
235235 $ this ->assertInstanceOf (Validation::class, $ actual );
236236 }
237237
0 commit comments