for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* _ __ __ _____ _____ ___ ____ _____
* | | / // // ___//_ _// || __||_ _|
* | |/ // /(__ ) / / / /| || | | |
* |___//_//____/ /_/ /_/ |_||_| |_|
* @link https://vistart.name/
* @copyright Copyright (c) 2016 vistart
* @license https://vistart.name/license/
*/
namespace vistart\Models\models;
use vistart\Models\queries\BaseMongoMessageQuery;
use vistart\Models\traits\MessageTrait;
* Description of BaseMongoMessageModel
*
* @author vistart <[email protected]>
abstract class BaseMongoMessageModel extends BaseMongoBlameableModel
{
use MessageTrait;
public $updatedByAttribute = false;
public function init()
if (!is_string($this->queryClass)) {
$this->queryClass = BaseMongoMessageQuery::className();
}
if ($this->skipInit) {
return;
$this->initMessageEvents();
parent::init();