Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / symfony / class-loader / Tests / Fixtures / Namespaced / WithFileMagic.php
1 <?php
2
3 /*
4  * foo
5  */
6
7 namespace Namespaced;
8
9 class WithFileMagic
10 {
11     public function getFile()
12     {
13         return __FILE__;
14     }
15 }