Skip to content

Commit 95f3f69

Browse files
committed
Git: typo
Signed-off-by: Jan Pecha <[email protected]>
1 parent 0cbdd5c commit 95f3f69

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Git.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Git implements IGit
1818
*/
1919
public function tag($name)
2020
{
21-
$this->run("git tag", $name);
21+
$this->run('git tag', $name);
2222
return $this;
2323
}
2424

@@ -33,7 +33,7 @@ public function tag($name)
3333
*/
3434
public function merge($branch, $options = NULL)
3535
{
36-
$this->run("git merge", $options, $branch);
36+
$this->run('git merge', $options, $branch);
3737
return $this;
3838
}
3939

@@ -49,7 +49,7 @@ public function merge($branch, $options = NULL)
4949
public function branchCreate($name, $checkout = FALSE)
5050
{
5151
// git branch $name
52-
$this->run("git branch", $name);
52+
$this->run('git branch', $name);
5353

5454
if($checkout)
5555
{
@@ -69,7 +69,7 @@ public function branchCreate($name, $checkout = FALSE)
6969
*/
7070
public function branchRemove($name)
7171
{
72-
$this->run("git branch", array(
72+
$this->run('git branch', array(
7373
'-d' => $name,
7474
));
7575
return $this;
@@ -113,7 +113,7 @@ public function branchName()
113113
*/
114114
public function checkout($name)
115115
{
116-
$this->run("git checkout", $name);
116+
$this->run('git checkout', $name);
117117
return $this;
118118
}
119119

@@ -134,7 +134,7 @@ public function remove($file)
134134

135135
foreach($file as $item)
136136
{
137-
$this->run("git rm", $item, '-r');
137+
$this->run('git rm', $item, '-r');
138138
}
139139

140140
return $this;
@@ -157,7 +157,7 @@ public function add($file)
157157

158158
foreach($file as $item)
159159
{
160-
$this->run("git add", $item);
160+
$this->run('git add', $item);
161161
}
162162

163163
return $this;

0 commit comments

Comments
 (0)