10 lines
131 B
PHP
10 lines
131 B
PHP
<?php
|
|
/**
|
|
* Test file for testing ServiceContainer::loadWiringFiles
|
|
*/
|
|
|
|
return [
|
|
'Foo' => function () {
|
|
return 'Foo!';
|
|
},
|
|
];
|