|
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\repositories\article;
|
|
|
|
|
|
use app\common\dao\article\ArticleContentDao;
|
|
use app\common\repositories\BaseRepository;
|
|
|
|
class ArticleContentRepository extends BaseRepository
|
|
{
|
|
public function __construct(ArticleContentDao $dao)
|
|
{
|
|
$this->dao = $dao;
|
|
}
|
|
}
|