Skip to content

Commit 8a8d2a5

Browse files
committed
fix: resolve CI test failures and update contact email
- Remove unused Collection import to fix PHPStan error - Add namespace declarations to test files for architecture compliance - Update security contact email to [email protected]
1 parent ab67d96 commit 8a8d2a5

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ Contributions are welcome! Please feel free to submit a Pull Request.
257257

258258
## Security
259259

260-
If you discover any security related issues, please email gerwin@example.com instead of using the issue tracker.
260+
If you discover any security related issues, please email iamgerwin@live.com instead of using the issue tracker.
261261

262262
## Credits
263263

src/GsmModem.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use Iamgerwin\GsmModem\Enums\SmsMode;
1212
use Iamgerwin\GsmModem\Helpers\PduHelper;
1313
use Iamgerwin\GsmModem\Models\SmsMessage;
14-
use Illuminate\Support\Collection;
1514

1615
class GsmModem implements ModemInterface
1716
{

tests/ArchTest.php

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

3+
namespace Iamgerwin\GsmModem\Tests;
4+
35
arch('it will not use debugging functions')
46
->expect(['dd', 'dump', 'ray'])
57
->each->not->toBeUsed();

tests/ExampleTest.php

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

3+
namespace Iamgerwin\GsmModem\Tests;
4+
35
it('can test', function () {
46
expect(true)->toBeTrue();
57
});

0 commit comments

Comments
 (0)