Skip to content

Commit 41453e6

Browse files
committed
fix typo in method name. fixes #22
1 parent 4747e73 commit 41453e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Base.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function run()
9595
$this->parseOptions();
9696
$this->handleDefaultOptions();
9797
$this->setupLogging();
98-
$this->checkArgments();
98+
$this->checkArguments();
9999
$this->execute();
100100

101101
exit(0);
@@ -164,7 +164,7 @@ protected function parseOptions()
164164
/**
165165
* Wrapper around the argument checking
166166
*/
167-
protected function checkArgments()
167+
protected function checkArguments()
168168
{
169169
$this->options->checkArguments();
170170
}

0 commit comments

Comments
 (0)