Automated formatting changes

This commit is contained in:
Formatter Bot 2021-09-25 07:34:53 +00:00
parent 7da35d00d5
commit 028b4fcaeb
3 changed files with 4 additions and 5 deletions

View File

@ -17,7 +17,6 @@ declare(strict_types=1);
namespace Modules\Admin\Controller;
use Model\App;
use Model\AppMapper;
use Modules\Admin\Models\Account;
use Modules\Admin\Models\AccountMapper;
use Modules\Admin\Models\AccountPermission;

View File

@ -57,4 +57,4 @@ class App
* @since 1.0.0
*/
public int $status = ApplicationStatus::NORMAL;
}
}

View File

@ -33,10 +33,10 @@ final class AppMapper extends DataMapperAbstract
* @since 1.0.0
*/
protected static array $columns = [
'app_id' => ['name' => 'app_id', 'type' => 'int', 'internal' => 'id'],
'app_name' => ['name' => 'app_name', 'type' => 'string', 'internal' => 'name'],
'app_id' => ['name' => 'app_id', 'type' => 'int', 'internal' => 'id'],
'app_name' => ['name' => 'app_name', 'type' => 'string', 'internal' => 'name'],
'app_theme' => ['name' => 'app_theme', 'type' => 'string', 'internal' => 'theme'],
'app_status' => ['name' => 'app_status', 'type' => 'int', 'internal' => 'status'],
'app_status' => ['name' => 'app_status', 'type' => 'int', 'internal' => 'status'],
];
/**