15 lines
208 B
PHP
15 lines
208 B
PHP
<?php
|
|
|
|
namespace App\DTOs\Auth;
|
|
|
|
use App\DTOs\CommonDTO;
|
|
|
|
abstract class AuthDTO extends CommonDTO
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
abstract public function toArray();
|
|
}
|