Yaffs site version 1.1
[yaffs-website] / vendor / psy / psysh / src / Psy / Input / SilentInput.php
1 <?php
2
3 /*
4  * This file is part of Psy Shell.
5  *
6  * (c) 2012-2017 Justin Hileman
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Psy\Input;
13
14 /**
15  * A simple class used internally by PsySH to represent silent input.
16  *
17  * Silent input is generally used for non-user-generated code, such as the
18  * rewritten user code run by sudo command. Silent input isn't echoed before
19  * evaluating, and it's not added to the readline history.
20  */
21 class SilentInput
22 {
23     private $inputString;
24
25     /**
26      * Constructor.
27      *
28      * @param string $inputString
29      */
30     public function __construct($inputString)
31     {
32         $this->inputString = $inputString;
33     }
34
35     /**
36      * To. String.
37      *
38      * @return string
39      */
40     public function __toString()
41     {
42         return $this->inputString;
43     }
44 }