We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f114149 + 40480da commit f7b331eCopy full SHA for f7b331e
web/reload-fixtures.php
@@ -1,13 +1,22 @@
1
<?php
2
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
+
12
function outputNice($output)
13
{
14
if (is_array($output)) {
15
foreach ($output as $line) {
- printf("<pre><code>%s</code>", $line);
16
+ printf('<pre><code>%s</code>', $line);
17
}
18
} else {
- printf("<pre><code>%s</code>", $output);
19
+ printf('<pre><code>%s</code>', $output);
20
21
22
0 commit comments