From 95f3f6989609a21b401afebaf880c4135b7eb024 Mon Sep 17 00:00:00 2001 From: Jan Pecha Date: Fri, 19 Apr 2013 21:56:32 +0200 Subject: [PATCH] Git: typo Signed-off-by: Jan Pecha --- Git.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Git.php b/Git.php index d800625..baf5787 100644 --- a/Git.php +++ b/Git.php @@ -18,7 +18,7 @@ class Git implements IGit */ public function tag($name) { - $this->run("git tag", $name); + $this->run('git tag', $name); return $this; } @@ -33,7 +33,7 @@ public function tag($name) */ public function merge($branch, $options = NULL) { - $this->run("git merge", $options, $branch); + $this->run('git merge', $options, $branch); return $this; } @@ -49,7 +49,7 @@ public function merge($branch, $options = NULL) public function branchCreate($name, $checkout = FALSE) { // git branch $name - $this->run("git branch", $name); + $this->run('git branch', $name); if($checkout) { @@ -69,7 +69,7 @@ public function branchCreate($name, $checkout = FALSE) */ public function branchRemove($name) { - $this->run("git branch", array( + $this->run('git branch', array( '-d' => $name, )); return $this; @@ -113,7 +113,7 @@ public function branchName() */ public function checkout($name) { - $this->run("git checkout", $name); + $this->run('git checkout', $name); return $this; } @@ -134,7 +134,7 @@ public function remove($file) foreach($file as $item) { - $this->run("git rm", $item, '-r'); + $this->run('git rm', $item, '-r'); } return $this; @@ -157,7 +157,7 @@ public function add($file) foreach($file as $item) { - $this->run("git add", $item); + $this->run('git add', $item); } return $this;