Issues (11)

src/Support/helpers.php (2 issues)

1
0 ignored issues
show
It is not recommended to output anything before PHP's opening tag in non-template files.
Loading history...
2
<?php
3
4
if (! function_exists("thetellara"))
5
{
6
    function thetellara() {
7
8
        return app()->make('thetellara');
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

8
        return /** @scrutinizer ignore-call */ app()->make('thetellara');
Loading history...
9
    }
10
}
11