Skip to content

Commit 4388804

Browse files
committed
Enforced strict typing
1 parent 9f20a89 commit 4388804

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

src/Client.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace MetaLine\ActiveCampaign;
1315

1416
use GuzzleHttp\Client as GuzzleClient;

src/ClientInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace MetaLine\ActiveCampaign;
1315

1416
/**

src/Result.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace MetaLine\ActiveCampaign;
1315

1416
/**

tests/ClientTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace MetaLine\ActiveCampaign\Tests;
1315

1416
use GuzzleHttp\Client as GuzzleClient;

tests/Fixture/GenericGuzzleException.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace MetaLine\ActiveCampaign\Tests\Fixture;
1315

1416
use Exception;

tests/ResultTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace MetaLine\ActiveCampaign\Tests;
1315

1416
use MetaLine\ActiveCampaign\Result;

0 commit comments

Comments
 (0)