for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/zhuravljov/yii2-queue-monitor
* @copyright Copyright (c) 2017 Roman Zhuravlev
* @license http://opensource.org/licenses/BSD-3-Clause
*/
namespace zhuravljov\yii\queue\monitor\records;
use yii\db\ActiveQuery;
* Exec Query
*
* @author Roman Zhuravlev <[email protected]>
class ExecQuery extends ActiveQuery
{
* @inheritdoc
public function init()
parent::init();
$this->alias('exec');
}
* @return ExecRecord[]|array
public function all($db = null)
return parent::all($db);
* @return ExecRecord|array|null
public function one($db = null)
return parent::one($db);
return parent::one($db)
yii\db\ActiveRecord
yii\db\QueryInterface::one()
boolean|array