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 1333056 commit 0a79764Copy full SHA for 0a79764
tests/ArchitectureTest.php
@@ -1,11 +1,11 @@
1
<?php
2
3
describe('architecture tests', function () {
4
- arch(null)
+ arch('dev debug calls')
5
->expect('Damms005\LaravelMultipay')
6
->not->toUse(['die', 'dd', 'dump']);
7
8
- arch(null)->preset()->php();
9
- arch(null)->preset()->laravel()->ignoring('Damms005\LaravelMultipay\LaravelMultipayServiceProvider');
10
- arch(null)->preset()->security()->ignoring('md5');
+ arch('php preset')->preset()->php();
+ arch('laravel preset')->preset()->laravel()->ignoring('Damms005\LaravelMultipay\LaravelMultipayServiceProvider');
+ arch('security preset')->preset()->security()->ignoring('md5');
11
});
0 commit comments