Skip to content

Commit 29c3e2c

Browse files
author
Steve Edson
committed
more fixes to support php 5.3
1 parent a7b3fde commit 29c3e2c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/SteveEdson/BitBar.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ public function newLine() {
99
}
1010

1111
public function divide() {
12-
(new BitBarLine())->show();
12+
$_line = new BitBarLine();
13+
$_line->show();
1314
}
1415
}
1516

@@ -24,7 +25,7 @@ class BitBarLine {
2425
protected $length;
2526
protected $terminal;
2627
protected $bash;
27-
protected $params = [];
28+
protected $params = array();
2829
protected $dropdown;
2930
protected $image;
3031
protected $imageIsTemplate = false;

0 commit comments

Comments
 (0)