pipicar/modules/Auth/AuthModule.php

35 lines
507 B
PHP
Raw 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 modules\Auth;
use A7kz\Platform\Modules\Module;
class AuthModule extends Module
{
protected $package = "platform";
public function rootDirectory(): string
{
return __DIR__;
}
public function commands(): array
{
return [
];
}
public function helpers(): array
{
return [
];
}
}