Use static:: instead of $this for static method calls

This commit is contained in:
Alexander Makarov
2016-02-16 14:06:23 +03:00
parent 97bc4e0567
commit 1f7134634b
5 changed files with 17 additions and 18 deletions

View File

@ -195,7 +195,7 @@ abstract class Application extends Module
public function __construct($config = [])
{
Yii::$app = $this;
$this->setInstance($this);
static::setInstance($this);
$this->state = self::STATE_BEGIN;