pipicar/modules/Home/HomeModule.php

30 lines
520 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
/*
* Copyright (c) 2023.
*
* A.Сапаргалиев
* ТОО "Дизайн лаборатория А7"
* Астана
*/
namespace App\Modules\Home;
use A7kz\Platform\Modules\Module;
use App\Modules\Home\Commands\HomeInstallCommand;
class HomeModule extends Module
{
protected $package = "platform";
public function rootDirectory(): string
{
return __DIR__;
}
public function commands(): array
{
return [
HomeInstallCommand::class
];
}
}