Skip to content

Commit

Permalink
Fixed Syntax error
Browse files Browse the repository at this point in the history
Fixed a syntax error at line 379
  • Loading branch information
BishoyA committed Nov 10, 2014
1 parent 49aff09 commit 5cd5d2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Git.php
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public function rm($files = "*", $cached = false) {
* @return string
*/
public function commit($message = "", $commit_all = true) {
var flags = $commit_all ? '-av' : '-v';
$flags = $commit_all ? '-av' : '-v';
return $this->run("commit '.$flags.' -m ".escapeshellarg($message));
}

Expand Down

0 comments on commit 5cd5d2d

Please sign in to comment.