We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 210a98a commit 1333056Copy full SHA for 1333056
tests/ArchitectureTest.php
@@ -1,11 +1,11 @@
1
<?php
2
3
describe('architecture tests', function () {
4
- arch()
+ arch(null)
5
->expect('Damms005\LaravelMultipay')
6
->not->toUse(['die', 'dd', 'dump']);
7
8
- arch()->preset()->php();
9
- arch()->preset()->laravel()->ignoring('Damms005\LaravelMultipay\LaravelMultipayServiceProvider');
10
- arch()->preset()->security()->ignoring('md5');
+ arch(null)->preset()->php();
+ arch(null)->preset()->laravel()->ignoring('Damms005\LaravelMultipay\LaravelMultipayServiceProvider');
+ arch(null)->preset()->security()->ignoring('md5');
11
});
0 commit comments