File Manager Lite
Dir:
/home/u540325668/domains/mkjsindia.org/public_html/vendor/psy/psysh/src/Command
Upload
[..]
ClearCommand.php (1.03 KB)
Edit
Rename
Del
Command.php (7.47 KB)
Edit
Rename
Del
DumpCommand.php (2.48 KB)
Edit
Rename
Del
EditCommand.php (5.58 KB)
Edit
Rename
Del
ExitCommand.php (1.06 KB)
Edit
Rename
Del
HistoryCommand.php (7.47 KB)
Edit
Rename
Del
ListCommand/
Rename
Del
ListCommand.php (9.69 KB)
Edit
Rename
Del
ParseCommand.php (4.91 KB)
Edit
Rename
Del
PsyVersionCommand.php (953 B)
Edit
Rename
Del
ReflectingCommand.php (9.41 KB)
Edit
Rename
Del
ShowCommand.php (9.26 KB)
Edit
Rename
Del
SudoCommand.php (3.68 KB)
Edit
Rename
Del
ThrowUpCommand.php (4.44 KB)
Edit
Rename
Del
TimeitCommand/
Rename
Del
TimeitCommand.php (5.23 KB)
Edit
Rename
Del
TraceCommand.php (5.03 KB)
Edit
Rename
Del
WhereamiCommand.php (4.06 KB)
Edit
Rename
Del
WtfCommand.php (3.58 KB)
Edit
Rename
Del
Edit: PsyVersionCommand.php
<?php /* * This file is part of Psy Shell. * * (c) 2012-2018 Justin Hileman * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Psy\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; /** * A dumb little command for printing out the current Psy Shell version. */ class PsyVersionCommand extends Command { /** * {@inheritdoc} */ protected function configure() { $this ->setName('version') ->setDefinition([]) ->setDescription('Show Psy Shell version.') ->setHelp('Show Psy Shell version.'); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $output->writeln($this->getApplication()->getVersion()); return 0; } }
Simpan