for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace UniSharp\LaravelFilemanager\Middlewares;
use Closure;
use Illuminate\Support\Str;
use UniSharp\LaravelFilemanager\Lfm;
class MultiUser
{
private $helper;
public function __construct()
$this->helper = app(Lfm::class);
app
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
$this->helper = /** @scrutinizer ignore-call */ app(Lfm::class);
}
public function handle($request, Closure $next)
if ($this->helper->allowFolderType('user')) {
$previous_dir = $request->input('working_dir');
$working_dir = $this->helper->getRootFolder('user');
if ($previous_dir == null) {
$request->merge(compact('working_dir'));
} elseif (! $this->validDir($previous_dir)) {
$request->replace(compact('working_dir'));
return $next($request);
private function validDir($previous_dir)
if (Str::startsWith($previous_dir, $this->helper->getRootFolder('share'))) {
return true;
if (Str::startsWith($previous_dir, $this->helper->getRootFolder('user'))) {
return false;