1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 18:47:50 +01:00
parallel/test/Worker/Fixtures/custom-bootstrap.php

12 lines
183 B
PHP
Raw Normal View History

<?php
\spl_autoload_register(function (string $className) {
if ($className !== CustomAutoloadClass::class) {
return;
}
class CustomAutoloadClass
{
}
});