Updated from some -dev modules to alpha, beta or full releases
[yaffs-website] / vendor / psy / psysh / test / Formatter / Fixtures / SomeClass.php
1 <?php
2
3 /*
4  * This file is part of Psy Shell.
5  *
6  * (c) 2012-2018 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\Test\Formatter\Fixtures;
13
14 class SomeClass
15 {
16     const SOME_CONST = 'some const';
17     private $someProp = 'some prop';
18
19     public function someMethod($someParam)
20     {
21         return 'some method';
22     }
23
24     public static function someClosure()
25     {
26         return function () {
27             return 'some closure';
28         };
29     }
30 }