Refactor deprecated App::getArgumentValue() to DI::args()->get()

This commit is contained in:
nupplaPhil 2019-12-16 00:31:29 +01:00
parent 8b6e123b3f
commit aedbdc536a
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
3 changed files with 2 additions and 13 deletions

View file

@ -36,7 +36,7 @@ class Help extends BaseModule
$path .= '/';
}
$path .= $a->getArgumentValue($x);
$path .= DI::args()->get($x);
}
$title = basename($path);
$filename = $path;