Skip to content

Commit 75ee274

Browse files
GrahamCampbellStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 1200027 commit 75ee274

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

tests/ClientTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Gitlab\Tests;
46

57
use Gitlab\Client;

tests/HttpClient/Util/QueryStringBuilderTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Gitlab\Tests\HttpClient\Util;
46

57
use Gitlab\HttpClient\Util\QueryStringBuilder;
@@ -13,7 +15,7 @@ class QueryStringBuilderTest extends TestCase
1315
* @param mixed $query
1416
* @param string $expected
1517
*/
16-
public function testBuild($query, string $expected)
18+
public function testBuild($query, string $expected): void
1719
{
1820
$this->assertSame($expected, QueryStringBuilder::build($query));
1921
}

tests/IntegrationTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Gitlab\Tests;
46

57
use Gitlab\Client;

0 commit comments

Comments
 (0)