You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
293 B
17 lines
293 B
<?php
|
|
namespace App\Admin\Repositories;
|
|
|
|
use Dcat\Admin\Grid;
|
|
use Dcat\Admin\Repositories\Repository;
|
|
|
|
class CommonEmpty extends Repository
|
|
{
|
|
/**
|
|
* 模型创建失败时返回空使用空数据仓库
|
|
*/
|
|
public function get(Grid\Model $model)
|
|
{
|
|
return [];
|
|
}
|
|
|
|
}
|