Skip to content

Commit

Permalink
Merge pull request #402 from symfony-cmf/analysis-qrl7Eg
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
ElectricMaxxx authored Jan 28, 2018
2 parents f114149 + 40480da commit f7b331e
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions web/reload-fixtures.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
<?php

/*
* This file is part of the Symfony CMF package.
*
* (c) 2011-2017 Symfony CMF
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

function outputNice($output)
{
if (is_array($output)) {
foreach ($output as $line) {
printf("<pre><code>%s</code>", $line);
printf('<pre><code>%s</code>', $line);
}
} else {
printf("<pre><code>%s</code>", $output);
printf('<pre><code>%s</code>', $output);
}
}

Expand Down

0 comments on commit f7b331e

Please sign in to comment.