Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
symfony
/
console
/
Input
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
ArgvInput.php
13.153KB
edt
ren
ArrayInput.php
5.454KB
edt
ren
Input.php
4.917KB
edt
ren
InputArgument.php
5.016KB
edt
ren
InputAwareInterface.php
0.563KB
edt
ren
InputDefinition.php
11.527KB
edt
ren
InputInterface.php
4.434KB
edt
ren
InputOption.php
8.284KB
edt
ren
StreamableInputInterfac
...
0.858KB
edt
ren
StringInput.php
2.589KB
edt
ren
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Input; /** * StreamableInputInterface is the interface implemented by all input classes * that have an input stream. * * @author Robin Chalas <robin.chalas@gmail.com> */ interface StreamableInputInterface extends InputInterface { /** * Sets the input stream to read from when interacting with the user. * * This is mainly useful for testing purpose. * * @param resource $stream The input stream */ public function setStream($stream): void; /** * Returns the input stream. * * @return resource|null */ public function getStream(); }
<=Back
Liking