Skip to content

Commit c23a3bd

Browse files
committed
Merge pull request kbjr#26 from BishoyA/master
Fixed Syntax error
2 parents 49aff09 + 5cd5d2d commit c23a3bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Git.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ public function rm($files = "*", $cached = false) {
376376
* @return string
377377
*/
378378
public function commit($message = "", $commit_all = true) {
379-
var flags = $commit_all ? '-av' : '-v';
379+
$flags = $commit_all ? '-av' : '-v';
380380
return $this->run("commit '.$flags.' -m ".escapeshellarg($message));
381381
}
382382

0 commit comments

Comments
 (0)