Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
22 | public function getConfigTreeBuilder() |
||
23 | { |
||
24 | $treeBuilder = new TreeBuilder(); |
||
25 | |||
26 | $rootNode = $treeBuilder->root('sculpin_pagination'); |
||
27 | |||
28 | $rootNode |
||
29 | ->children() |
||
30 | ->scalarNode('max_per_page') |
||
31 | ->defaultValue('10') |
||
32 | ->end() |
||
33 | ->end(); |
||
34 | |||
35 | return $treeBuilder; |
||
36 | } |
||
37 | } |
||
38 |