The used phpcs has a bug, so the version 0.9.0 could not be enforced at the moment. Will be fixed in next version, see T167168 Changed: - Remove duplicate newline at end of file - Add space between function and ( for closures - and -> &&, or -> || Change-Id: I4172fb08861729bccd55aecbd07e029e2638d311
10 lines
131 B
PHP
10 lines
131 B
PHP
<?php
|
|
/**
|
|
* Test file for testing ServiceContainer::loadWiringFiles
|
|
*/
|
|
|
|
return [
|
|
'Foo' => function () {
|
|
return 'Foo!';
|
|
},
|
|
];
|