Updated from some -dev modules to alpha, beta or full releases
[yaffs-website] / vendor / psy / psysh / test / Formatter / Fixtures / BoringTrait.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 trait BoringTrait
15 {
16     public function boringMethod($one = 1)
17     {
18         // Do nothing.
19     }
20 }