1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-08 16:17:37 +00:00
composer/tests/Composer/Test/Autoload/MinimumVersionSupport/Foo.php
Jordi Boggiano 0a2846cb24
Fix autoloading on PHP 5.6 (#11285)
* Add a CI check to ensure the autoloader can run on php5.6+

* Fix autoloading on PHP 5.6
2023-01-27 16:26:04 +01:00

14 lines
166 B
PHP

<?php
namespace Test;
class Foo
{
/**
* @return void
*/
public static function test()
{
echo 'psr-4 autoloading: OK'.PHP_EOL;
}
}