Skip to content

Commit

Permalink
Declare strict types
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Dec 18, 2022
1 parent af5815c commit fc8d0c0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/AsyncTestCase.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);

namespace Amp\PHPUnit;

Expand Down
2 changes: 1 addition & 1 deletion src/CallbackStub.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);

namespace Amp\PHPUnit;

Expand Down
2 changes: 1 addition & 1 deletion src/TestException.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);

namespace Amp\PHPUnit;

Expand Down
2 changes: 1 addition & 1 deletion src/UnhandledException.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);

namespace Amp\PHPUnit;

Expand Down
2 changes: 1 addition & 1 deletion test/AsyncTestCaseTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);

namespace Amp\PHPUnit\Test;

Expand Down
2 changes: 1 addition & 1 deletion test/InvalidAsyncTestCaseTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);

namespace Amp\PHPUnit\Test;

Expand Down

0 comments on commit fc8d0c0

Please sign in to comment.