2024-09-22 22:58:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
arch()
|
|
|
|
->expect('App')
|
2024-10-28 23:54:21 +01:00
|
|
|
->not->toUse(['die', 'dd', 'dump'])
|
2024-09-22 22:58:31 +02:00
|
|
|
->not->toHaveFileSystemPermissions('0777');
|
2024-10-25 00:39:03 +02:00
|
|
|
|
|
|
|
arch()
|
|
|
|
->expect('Modules')
|
|
|
|
->not->toUse(['die', 'dd', 'dump'])
|
|
|
|
->not->toHaveFileSystemPermissions('0777');
|