Skip to content

Commit f7b331e

Browse files
Merge pull request #402 from symfony-cmf/analysis-qrl7Eg
Apply fixes from StyleCI
2 parents f114149 + 40480da commit f7b331e

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)