Skip to content

Commit db4d746

Browse files
authored
Remove indentation in array arguments (#860)
1 parent d363592 commit db4d746

File tree

4 files changed

+17
-25
lines changed

4 files changed

+17
-25
lines changed

conferences/index.php

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,8 @@
5050

5151
echo $content;
5252

53-
site_footer(
54-
[
55-
"atom" => "/feed.atom",
56-
"elephpants" => true,
57-
"sidebar" => $panels,
58-
]
59-
);
53+
site_footer([
54+
"atom" => "/feed.atom",
55+
"elephpants" => true,
56+
"sidebar" => $panels,
57+
]);

elephpant.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@
3535

3636
<?php
3737
// Print the common footer.
38-
site_footer(
39-
[
40-
'elephpants' => true
41-
]
42-
);
38+
site_footer([
39+
'elephpants' => true
40+
]);

index.php

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,8 @@
225225
SIDEBAR_DATA;
226226

227227
// Print the common footer.
228-
site_footer(
229-
[
230-
"atom" => "/feed.atom", // Add a link to the feed at the bottom
231-
'elephpants' => true,
232-
'sidebar' => $SIDEBAR
233-
]
234-
);
228+
site_footer([
229+
"atom" => "/feed.atom", // Add a link to the feed at the bottom
230+
'elephpants' => true,
231+
'sidebar' => $SIDEBAR
232+
]);

sites.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ interface to it. There you can browse the history (and latest versions) of the
189189
<h2 id="windows" class="content-header"><a href="https://windows.php.net/">windows.php.net</a>: PHP for Windows</h2>
190190

191191
<p class="content-box">
192-
This site is dedicated to supporting PHP on Microsoft Windows.
192+
This site is dedicated to supporting PHP on Microsoft Windows.
193193
It also supports ports of PHP extensions or features as well as providing special builds for the various Windows architectures.
194194
</p>
195195

@@ -222,8 +222,6 @@ interface to it. There you can browse the history (and latest versions) of the
222222
SIDEBAR_DATA;
223223

224224
// Print the common footer.
225-
site_footer(
226-
[
227-
'sidebar' => $SIDEBAR
228-
]
229-
);
225+
site_footer([
226+
'sidebar' => $SIDEBAR
227+
]);

0 commit comments

Comments
 (0)