summaryrefslogtreecommitdiffstats
path: root/tests/mocks
diff options
context:
space:
mode:
authorClaudio Galdiolo <claudio.galdiolo@gmail.com>2015-01-29 16:21:55 +0100
committerClaudio Galdiolo <claudio.galdiolo@gmail.com>2015-01-29 16:21:55 +0100
commitcb29049ea6d5a46fff032e15234b3a1b6c3bc54b (patch)
tree730e351305c641422666395763ad59a7e7fa4db8 /tests/mocks
parentb4834cc72cf0c861fa5e67494328bf958c386ecf (diff)
fix typo in comments
Diffstat (limited to 'tests/mocks')
-rw-r--r--tests/mocks/core/security.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/mocks/core/security.php b/tests/mocks/core/security.php
index e19a8b20b..a21fc5cb3 100644
--- a/tests/mocks/core/security.php
+++ b/tests/mocks/core/security.php
@@ -10,13 +10,13 @@ class Mock_Core_Security extends CI_Security {
return $this;
}
- // Overide inaccesible protected properties
+ // Override inaccessible protected properties
public function __get($property)
{
return isset($this->{'_'.$property}) ? $this->{'_'.$property} : NULL;
}
- // Overide inaccesible protected method
+ // Override inaccessible protected method
public function __call($method, $params)
{
if (is_callable(array($this, '_'.$method)))
@@ -27,4 +27,4 @@ class Mock_Core_Security extends CI_Security {
throw new BadMethodCallException('Method '.$method.' was not found');
}
-} \ No newline at end of file
+}