forked from fa/breadcrumb-the-shire
23 lines
589 B
PHP
23 lines
589 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Tests\Architecture;
|
|
|
|
final class DetailPageContractFiles
|
|
{
|
|
/**
|
|
* @return list<string>
|
|
*/
|
|
public static function standardDetailFormFiles(): array
|
|
{
|
|
return [
|
|
'pages/admin/users/_form.phtml',
|
|
'pages/admin/tenants/_form.phtml',
|
|
'pages/admin/departments/_form.phtml',
|
|
'pages/admin/roles/_form.phtml',
|
|
'pages/admin/permissions/_form.phtml',
|
|
'pages/admin/scheduled-jobs/edit(default).phtml',
|
|
'pages/admin/settings/index(default).phtml',
|
|
];
|
|
}
|
|
}
|