Skip to content

Commit

Permalink
Update architecture test function calls with null parameter.-
Browse files Browse the repository at this point in the history
  • Loading branch information
damms005 committed Oct 25, 2024
1 parent 210a98a commit 1333056
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/ArchitectureTest.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

describe('architecture tests', function () {
arch()
arch(null)
->expect('Damms005\LaravelMultipay')
->not->toUse(['die', 'dd', 'dump']);

arch()->preset()->php();
arch()->preset()->laravel()->ignoring('Damms005\LaravelMultipay\LaravelMultipayServiceProvider');
arch()->preset()->security()->ignoring('md5');
arch(null)->preset()->php();
arch(null)->preset()->laravel()->ignoring('Damms005\LaravelMultipay\LaravelMultipayServiceProvider');
arch(null)->preset()->security()->ignoring('md5');
});

0 comments on commit 1333056

Please sign in to comment.