mirror of
https://github.com/danog/parallel.git
synced 2024-11-27 04:44:56 +01:00
7c8f936618
Calling the file a boostrap makes more sense as more than defining an autoloader can be done in the file.
12 lines
183 B
PHP
12 lines
183 B
PHP
<?php
|
|
|
|
\spl_autoload_register(function (string $className) {
|
|
if ($className !== CustomAutoloadClass::class) {
|
|
return;
|
|
}
|
|
|
|
class CustomAutoloadClass
|
|
{
|
|
}
|
|
});
|