1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Remove indentation in array arguments (#860)

This commit is contained in:
Andreas Möller
2023-12-06 15:08:55 +01:00
committed by GitHub
parent d36359230f
commit db4d74648f
4 changed files with 17 additions and 25 deletions

View File

@@ -50,10 +50,8 @@ $content .= "</div>";
echo $content;
site_footer(
[
"atom" => "/feed.atom",
"elephpants" => true,
"sidebar" => $panels,
]
);
site_footer([
"atom" => "/feed.atom",
"elephpants" => true,
"sidebar" => $panels,
]);

View File

@@ -35,8 +35,6 @@ site_header("ElePHPant", ["current" => "footer"]);
<?php
// Print the common footer.
site_footer(
[
'elephpants' => true
]
);
site_footer([
'elephpants' => true
]);

View File

@@ -225,10 +225,8 @@ $announcements
SIDEBAR_DATA;
// Print the common footer.
site_footer(
[
"atom" => "/feed.atom", // Add a link to the feed at the bottom
'elephpants' => true,
'sidebar' => $SIDEBAR
]
);
site_footer([
"atom" => "/feed.atom", // Add a link to the feed at the bottom
'elephpants' => true,
'sidebar' => $SIDEBAR
]);

View File

@@ -189,7 +189,7 @@ site_header("A Tourist's Guide", ["current" => "help"]);
<h2 id="windows" class="content-header"><a href="https://windows.php.net/">windows.php.net</a>: PHP for Windows</h2>
<p class="content-box">
This site is dedicated to supporting PHP on Microsoft Windows.
This site is dedicated to supporting PHP on Microsoft Windows.
It also supports ports of PHP extensions or features as well as providing special builds for the various Windows architectures.
</p>
@@ -222,8 +222,6 @@ $SIDEBAR = <<<SIDEBAR_DATA
SIDEBAR_DATA;
// Print the common footer.
site_footer(
[
'sidebar' => $SIDEBAR
]
);
site_footer([
'sidebar' => $SIDEBAR
]);