These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | namespace leandrogehlen\querybuilder; |
||
4 | |||
5 | /** |
||
6 | * QueryBuilder renders a jQuery QueryBuilder component. |
||
7 | * |
||
8 | * @see http://mistic100.github.io/jQuery-QueryBuilder/ |
||
9 | * @author Leandro Gehlen <[email protected]> |
||
10 | */ |
||
11 | class QueryBuilder extends \soluto\plugin\Widget { |
||
12 | |||
13 | /** |
||
14 | * @inheridoc |
||
15 | */ |
||
16 | public $pluginName = 'queryBuilder'; |
||
17 | |||
18 | /** |
||
19 | * @inheritdoc |
||
20 | */ |
||
21 | protected function assets() |
||
22 | { |
||
23 | return [ |
||
24 | QueryBuilderAsset::className() |
||
0 ignored issues
–
show
|
|||
25 | ]; |
||
26 | } |
||
27 | |||
28 | } |
||
29 |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.