Yaffs site version 1.1
[yaffs-website] / vendor / psy / psysh / src / Psy / CodeCleaner / NoReturnValue.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\CodeCleaner;
13
14 /**
15  * A class used internally by CodeCleaner to represent input, such as
16  * non-expression statements, with no return value.
17  *
18  * Note that user code returning an instance of this class will act like it
19  * has no return value, so you prolly shouldn't do that.
20  */
21 class NoReturnValue
22 {
23     // this space intentionally left blank
24 }