, * Pádraic Brady * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return [ 'meta' => [ 'title' => 'Simple binary file', // Default values. If not specified will be the one used 'prefix' => 'Humbug', 'whitelist' => [], 'whitelist-global-constants' => true, 'whitelist-global-classes' => false, 'whitelist-global-functions' => true, 'registered-classes' => [], 'registered-functions' => [], ], 'Some statements made directly in the global namespace' => <<<'PHP' * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\true) { echo "yo"; } if (\false) { echo "oy"; } ---- * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\true) { echo "yo"; } if (\false) { echo "oy"; } PHP , 'Some statements made directly in the global namespace with a shebang' => <<<'PHP' #!/usr/bin/env php * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\true) { echo "yo"; } if (\false) { echo "oy"; } ---- #!/usr/bin/env php * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (\true) { echo "yo"; } if (\false) { echo "oy"; } PHP , ];