fixed example with wrong namespace at 'yii2/framework/widgets/MaskedInput.php' documentation

This commit is contained in:
Gabriel Homsi
2015-02-12 15:12:09 -02:00
parent 10ba054f61
commit ba7ccf2a0b

View File

@ -33,7 +33,7 @@ use yii\web\View;
* method, for example like this:
*
* ```php
* <?= $form->field($model, 'from_date')->widget(\yii\jui\MaskedInput::classname(), [
* <?= $form->field($model, 'from_date')->widget(\yii\widgets\MaskedInput::classname(), [
* 'mask' => '999-999-9999',
* ]) ?>
* ```