diff options
author | Andrey Andreev <narf@devilix.net> | 2015-01-29 16:44:02 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-01-29 16:44:02 +0100 |
commit | 423518089d8e894841da75aadaf8364eb2523600 (patch) | |
tree | 39b2c570bba880d356ec8b818648f359cc1f6339 /tests/mocks/libraries/encrypt.php | |
parent | b4834cc72cf0c861fa5e67494328bf958c386ecf (diff) | |
parent | 5c9d905ad883cd4ab1c47652cd89f0c9b1f9fece (diff) |
Merge pull request #3530 from galdiolo/patch-5
[ci skip] Fix comment typos
Diffstat (limited to 'tests/mocks/libraries/encrypt.php')
-rw-r--r-- | tests/mocks/libraries/encrypt.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mocks/libraries/encrypt.php b/tests/mocks/libraries/encrypt.php index f1859398f..c14d1e02f 100644 --- a/tests/mocks/libraries/encrypt.php +++ b/tests/mocks/libraries/encrypt.php @@ -2,7 +2,7 @@ class Mock_Libraries_Encrypt extends CI_Encrypt { - // Overide inaccesible protected method + // Override inaccessible protected method public function __call($method, $params) { if (is_callable(array($this, '_'.$method))) @@ -13,4 +13,4 @@ class Mock_Libraries_Encrypt extends CI_Encrypt { throw new BadMethodCallException('Method '.$method.' was not found'); } -}
\ No newline at end of file +} |