vistart/yii2-models

View on GitHub
queries/BaseBlameableQuery.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 *  _   __ __ _____ _____ ___  ____  _____
 * | | / // // ___//_  _//   ||  __||_   _|
 * | |/ // /(__  )  / / / /| || |     | |
 * |___//_//____/  /_/ /_/ |_||_|     |_|
 * @link http://vistart.name/
 * @copyright Copyright (c) 2016 vistart
 * @license http://vistart.name/license/
 */

namespace vistart\Models\queries;

use vistart\Models\traits\BlameableQueryTrait;

/**
 * Description of BaseBlameableQuery
 *
 * @version 2.0
 * @author vistart <i@vistart.name>
 */
class BaseBlameableQuery extends BaseEntityQuery
{
    use BlameableQueryTrait;
}