Skip to content

Commit 866c5c3

Browse files
committed
Remove return value specifier for PHP5.
1 parent 40ba849 commit 866c5c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CSSList/CSSList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public function splice($iOffset, $iLength = null, $mReplacement = null)
303303
* @param RuleSet|CSSList|Import|Charset $item
304304
* @param RuleSet|CSSList|Import|Charset $sibling
305305
*/
306-
public function insertBefore($item, $sibling): void
306+
public function insertBefore($item, $sibling)
307307
{
308308
if (in_array($sibling, $this->aContents, true)) {
309309
$this->replace($sibling, [$item, $sibling]);

0 commit comments

Comments
 (0)