Skip to content

Commit 7b869c3

Browse files
committed
revert usage of BaseObject
1 parent 35ab354 commit 7b869c3

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Yii2 widget for handle multiple inputs for an attribute of model and tabular inp
88
[![License](https://poser.pugx.org/unclead/yii2-multiple-input/license)](https://packagist.org/packages/unclead/yii2-multiple-input)
99

1010
## Latest release
11-
The latest stable version of the extension is v2.11.0 Follow the [instruction](./UPGRADE.md) for upgrading from previous versions
11+
The latest stable version of the extension is v2.11.1 Follow the [instruction](./UPGRADE.md) for upgrading from previous versions
1212

1313
## Installation
1414
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

UPGRADE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ if you want to upgrade from version A to version C and there is
88
version B between A and C, you need to following the instructions
99
for both A and B.
1010

11-
Upgrade 2.11.0
12-
---------------------------
11+
Upgrade 2.12.0 (when yii2 2.0.13 will be released)
12+
--------------------------------------------------
1313
- Ensure you use yii2 2.0.13 and higher, otherwise you have to use previous version of the widget
1414

1515
Upgrade from 2.2.0 tp 2.3.0

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"yii2 tabular input"
1010
],
1111
"type": "yii2-extension",
12-
"version": "2.11.0",
12+
"version": "2.11.1",
1313
"license": "BSD-3-Clause",
1414
"support": {
1515
"issues": "https://github.com/unclead/yii2-multiple-input/issues?state=open",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery.multipleInput",
3-
"version": "2.11.0",
3+
"version": "2.11.1",
44
"description": "jQuery multipleInput",
55
"scripts": {
66
"build": "npm install && (gulp || node node_modules/gulp/bin/gulp.js)"

src/components/BaseColumn.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Closure;
1212
use yii\base\InvalidConfigException;
1313
use yii\base\Model;
14-
use yii\base\BaseObject;
14+
use yii\base\Object;
1515
use yii\db\ActiveRecordInterface;
1616
use yii\helpers\ArrayHelper;
1717
use yii\helpers\Html;
@@ -23,7 +23,7 @@
2323
*
2424
* @package unclead\multipleinput\components
2525
*/
26-
abstract class BaseColumn extends BaseObject
26+
abstract class BaseColumn extends Object
2727
{
2828
const TYPE_TEXT_INPUT = 'textInput';
2929
const TYPE_HIDDEN_INPUT = 'hiddenInput';

src/renderers/BaseRenderer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use yii\base\InvalidConfigException;
1616
use yii\base\Model;
1717
use yii\base\NotSupportedException;
18-
use yii\base\BaseObject;
18+
use yii\base\Object;
1919
use yii\db\ActiveRecordInterface;
2020
use yii\web\View;
2121
use yii\widgets\ActiveForm;
@@ -29,7 +29,7 @@
2929
* Class BaseRenderer
3030
* @package unclead\multipleinput\renderers
3131
*/
32-
abstract class BaseRenderer extends BaseObject implements RendererInterface
32+
abstract class BaseRenderer extends Object implements RendererInterface
3333
{
3434
/**
3535
* @var string the ID of the widget

0 commit comments

Comments
 (0)