for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace UniSharp\LaravelFilemanager\Exceptions;
class EmptyFileException extends \Exception
{
public function __construct()
$this->message = trans('laravel-filemanager::lfm.error-file-empty');
trans
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
$this->message = /** @scrutinizer ignore-call */ trans('laravel-filemanager::lfm.error-file-empty');
}