Skip to content

Commit

Permalink
more fixes to support php 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Edson committed Jun 19, 2018
1 parent a7b3fde commit 29c3e2c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/SteveEdson/BitBar.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ public function newLine() {
}

public function divide() {
(new BitBarLine())->show();
$_line = new BitBarLine();
$_line->show();
}
}

Expand All @@ -24,7 +25,7 @@ class BitBarLine {
protected $length;
protected $terminal;
protected $bash;
protected $params = [];
protected $params = array();
protected $dropdown;
protected $image;
protected $imageIsTemplate = false;
Expand Down

0 comments on commit 29c3e2c

Please sign in to comment.