mirror of
https://github.com/composer/composer
synced 2025-05-08 16:17:37 +00:00

* Add a CI check to ensure the autoloader can run on php5.6+ * Fix autoloading on PHP 5.6
14 lines
166 B
PHP
14 lines
166 B
PHP
<?php
|
|
|
|
namespace Test;
|
|
|
|
class Foo
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
public static function test()
|
|
{
|
|
echo 'psr-4 autoloading: OK'.PHP_EOL;
|
|
}
|
|
}
|