Skip to content

Commit

Permalink
Changes according to yii2 2.0.12 update
Browse files Browse the repository at this point in the history
  • Loading branch information
digitv committed Jan 12, 2018
1 parent c99453d commit 5a4434b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
3 changes: 1 addition & 2 deletions components/HtmlChain.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@
namespace digitv\yii2live\components;

use digitv\yii2live\Yii2Live;
use yii\base\Object;
use yii\bootstrap\Html as bsHtml;
use yii\helpers\ArrayHelper;
use yii\helpers\Inflector;

/**
* Class HtmlChain
*/
class HtmlChain extends Object
class HtmlChain extends \yii\base\BaseObject
{
const TYPE_LINK = 'a';
const TYPE_TAG = 'tag';
Expand Down
3 changes: 1 addition & 2 deletions components/JsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use digitv\yii2live\Yii2Live;
use Yii;
use yii\base\Object;
use yii\helpers\Url;

/**
Expand All @@ -14,7 +13,7 @@
* @property array $stack
* @property array $commands
*/
class JsCommand extends Object implements ResponseObject
class JsCommand extends \yii\base\BaseObject implements ResponseObject
{
const CMD_TYPE_JQUERY = 'jQuery';
const CMD_TYPE_JQUERY_CHAIN = 'jQueryChain';
Expand Down
3 changes: 1 addition & 2 deletions components/PageAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@

namespace digitv\yii2live\components;

use yii\base\Object;
use yii\bootstrap\Html;

/**
* Class PageAttributes
*
*/
class PageAttributes extends Object
class PageAttributes extends \yii\base\BaseObject
{
protected static $instance;

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "digitv/yii2live",
"version": "1.1.6",
"version": "1.1.7",
"description": "Yii2 Live package",
"keywords": ["yii2", "ajax", "live", "node.js"],
"type": "yii2-extension",
Expand All @@ -17,7 +17,7 @@
],
"minimum-stability": "dev",
"require": {
"yiisoft/yii2": "*",
"yiisoft/yii2": "^2.0.13",
"bower-asset/Font-Awesome": "^4.7",
"bower-asset/remarkable-bootstrap-notify": "^3.1.3",
"bower-asset/animate.css": "^3.5.2"
Expand Down

0 comments on commit 5a4434b

Please sign in to comment.