app\models\Player::updateLastModified PHP Метод

updateLastModified() публичный Метод

Update the date of last modified.
public updateLastModified ( ) : mixed
Результат mixed
    public function updateLastModified()
    {
        // @see http://stackoverflow.com/questions/2215354/php-date-format-when-inserting-into-datetime-in-mysql
        $this->update(['last_modified' => Utils::getTimeFormatted()]);
        return Event::fire(new PlayerProfileUpdated($this));
    }