Skip to content

Commit 40480da

Browse files
ElectricMaxxxStyleCIBot
authored andcommitted
Apply fixes from StyleCI
[ci skip] [skip ci]
1 parent f114149 commit 40480da

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

web/reload-fixtures.php

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony CMF package.
5+
*
6+
* (c) 2011-2017 Symfony CMF
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
function outputNice($output)
413
{
514
if (is_array($output)) {
615
foreach ($output as $line) {
7-
printf("<pre><code>%s</code>", $line);
16+
printf('<pre><code>%s</code>', $line);
817
}
918
} else {
10-
printf("<pre><code>%s</code>", $output);
19+
printf('<pre><code>%s</code>', $output);
1120
}
1221
}
1322

0 commit comments

Comments
 (0)