mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-06 12:28:11 +00:00
14 lines
216 B
PHP
14 lines
216 B
PHP
<?php
|
|
|
|
namespace app\dao\out;
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\out\OutInterface;
|
|
|
|
class OutInterfaceDao extends BaseDao
|
|
{
|
|
protected function setModel(): string
|
|
{
|
|
return OutInterface::class;
|
|
}
|
|
} |