| Total Complexity | 4 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class TableGridRenderer extends AbstractRenderer |
||
| 9 | { |
||
| 10 | public static $defaultOptions = [ |
||
| 11 | 'table_attr' => [ |
||
| 12 | 'class' => 'display table table-striped table-bordered small-font', |
||
| 13 | ], |
||
| 14 | ]; |
||
| 15 | |||
| 16 | protected $twig; |
||
| 17 | protected $router; |
||
| 18 | protected $translator; |
||
| 19 | protected $options; |
||
| 20 | |||
| 21 | public function __construct(Environment $twig, RouterInterface $router, $translator, array $options) |
||
| 22 | { |
||
| 23 | $this->translator = $translator; |
||
| 24 | $this->twig = $twig; |
||
| 25 | $this->router = $router; |
||
| 26 | $this->options = $options; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function render() |
||
| 41 | } |
||
| 42 | |||
| 43 | public function getParams(array &$params = null) |
||
| 53 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths