We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cde3e0e commit b7460b2Copy full SHA for b7460b2
src/components/BaseColumn.php
@@ -11,7 +11,7 @@
11
use Closure;
12
use yii\base\InvalidConfigException;
13
use yii\base\Model;
14
-use yii\base\Object;
+use yii\base\BaseObject;
15
use yii\db\ActiveRecordInterface;
16
use yii\helpers\ArrayHelper;
17
use yii\helpers\Html;
@@ -23,7 +23,7 @@
23
*
24
* @package unclead\multipleinput\components
25
*/
26
-abstract class BaseColumn extends Object
+abstract class BaseColumn extends BaseObject
27
{
28
const TYPE_TEXT_INPUT = 'textInput';
29
const TYPE_HIDDEN_INPUT = 'hiddenInput';
@@ -552,4 +552,4 @@ public function renderError($error)
552
* @return mixed
553
554
abstract public function getFirstError($index);
555
-}
+}
0 commit comments