Merge pull request #3530 from galdiolo/patch-5
[ci skip] Fix comment typos
diff --git a/tests/mocks/core/security.php b/tests/mocks/core/security.php
index e19a8b2..a21fc5c 100644
--- a/tests/mocks/core/security.php
+++ b/tests/mocks/core/security.php
@@ -10,13 +10,13 @@
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 @@
throw new BadMethodCallException('Method '.$method.' was not found');
}
-}
\ No newline at end of file
+}
diff --git a/tests/mocks/libraries/encrypt.php b/tests/mocks/libraries/encrypt.php
index f185939..c14d1e0 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 @@
throw new BadMethodCallException('Method '.$method.' was not found');
}
-}
\ No newline at end of file
+}
diff --git a/tests/mocks/libraries/table.php b/tests/mocks/libraries/table.php
index 87c278b..08f8007 100644
--- a/tests/mocks/libraries/table.php
+++ b/tests/mocks/libraries/table.php
@@ -2,7 +2,7 @@
class Mock_Libraries_Table extends CI_Table {
- // Overide inaccesible protected method
+ // Override inaccessible protected method
public function __call($method, $params)
{
if (is_callable(array($this, '_'.$method)))
@@ -13,4 +13,4 @@
throw new BadMethodCallException('Method '.$method.' was not found');
}
-}
\ No newline at end of file
+}