summaryrefslogtreecommitdiffstats
path: root/tests/mocks/core/security.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-01-29 16:44:02 +0100
committerAndrey Andreev <narf@devilix.net>2015-01-29 16:44:02 +0100
commit423518089d8e894841da75aadaf8364eb2523600 (patch)
tree39b2c570bba880d356ec8b818648f359cc1f6339 /tests/mocks/core/security.php
parentb4834cc72cf0c861fa5e67494328bf958c386ecf (diff)
parent5c9d905ad883cd4ab1c47652cd89f0c9b1f9fece (diff)
Merge pull request #3530 from galdiolo/patch-5
[ci skip] Fix comment typos
Diffstat (limited to 'tests/mocks/core/security.php')
-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
+}