Issues (6)

src/helper.php (1 issue)

Labels
Severity
1
<?php
2
3
if (!function_exists('datatables')) {
4
    function datatables()
5
    {
6
        return app('datatables');
0 ignored issues
show
The function app was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

6
        return /** @scrutinizer ignore-call */ app('datatables');
Loading history...
7
    }
8
}
9