whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Env
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Env/args.php
<?php declare(strict_types=1); namespace Psl\Env; /** * Returns the arguments which this program was started with (normally passed via the command line). * * @return list<string> */ function args(): array { /** @var list<string>|null $args */ $args = $GLOBALS['argv'] ?? null; // @codeCoverageIgnoreStart if (null === $args) { return []; } // @codeCoverageIgnoreEnd return $args; }
Copyright ©2021 || Defacer Indonesia