@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | use \coderius\pell\Pell; |
4 | -use yii\web\JsExpression; |
|
5 | 4 | use yii\helpers\Html; |
5 | +use yii\web\JsExpression; |
|
6 | 6 | use yii\widgets\ActiveForm; |
7 | 7 | |
8 | 8 | ?> |
@@ -215,7 +215,7 @@ |
||
215 | 215 | * Generates a textarea tag for the given model attribute. |
216 | 216 | * The model attribute value will be used as the content in the textarea. |
217 | 217 | * |
218 | - * @return void |
|
218 | + * @return string |
|
219 | 219 | */ |
220 | 220 | protected function getTextArea() |
221 | 221 | { |
@@ -8,13 +8,13 @@ |
||
8 | 8 | |
9 | 9 | namespace coderius\pell; |
10 | 10 | |
11 | +use coderius\pell\PellInputWidget; |
|
12 | +use yii\base\InvalidParamException; |
|
13 | +use yii\helpers\ArrayHelper; |
|
11 | 14 | use yii\helpers\Html; |
12 | 15 | use yii\helpers\Json; |
13 | -use coderius\pell\PellInputWidget; |
|
14 | -use yii\web\View; |
|
15 | 16 | use yii\web\JsExpression; |
16 | -use yii\helpers\ArrayHelper; |
|
17 | -use yii\base\InvalidParamException; |
|
17 | +use yii\web\View; |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Pell widget renders a pell js plugin for WYSIWYG editing. |