Mercurial > hg > isophonics-drupal-site
annotate vendor/psy/psysh/test/CodeCleaner/Fixtures/TraitWithStatic.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 129ea1e6d783 |
children |
rev | line source |
---|---|
Chris@17 | 1 <?php |
Chris@17 | 2 |
Chris@17 | 3 /* |
Chris@17 | 4 * This file is part of Psy Shell. |
Chris@17 | 5 * |
Chris@17 | 6 * (c) 2012-2018 Justin Hileman |
Chris@17 | 7 * |
Chris@17 | 8 * For the full copyright and license information, please view the LICENSE |
Chris@17 | 9 * file that was distributed with this source code. |
Chris@17 | 10 */ |
Chris@17 | 11 |
Chris@17 | 12 namespace Psy\Test\CodeCleaner\Fixtures; |
Chris@17 | 13 |
Chris@17 | 14 trait TraitWithStatic |
Chris@17 | 15 { |
Chris@17 | 16 public static function doStuff() |
Chris@17 | 17 { |
Chris@17 | 18 // Don't actually do stuff. |
Chris@17 | 19 } |
Chris@17 | 20 } |