diff options
author | Alex Bilbie <alex@alexbilbie.com> | 2012-06-02 12:12:55 +0200 |
---|---|---|
committer | Alex Bilbie <alex@alexbilbie.com> | 2012-06-02 12:12:55 +0200 |
commit | d6d1150959c95e43d310d0bc45f8bd674ff6460c (patch) | |
tree | d5868c3dc4fbd22bcfc6d57a650b9dbadca21a41 /tests/mocks/core | |
parent | d261b1e89c3d4d5191036d5a5660ef6764e593a0 (diff) |
Replaced `==` with `===` and `!=` with `!==` in /tests
Diffstat (limited to 'tests/mocks/core')
-rw-r--r-- | tests/mocks/core/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mocks/core/common.php b/tests/mocks/core/common.php index e74576626..e1c493aa0 100644 --- a/tests/mocks/core/common.php +++ b/tests/mocks/core/common.php @@ -45,7 +45,7 @@ if ( ! function_exists('load_class')) { function load_class($class, $directory = 'libraries', $prefix = 'CI_') { - if ($directory != 'core' OR $prefix != 'CI_') + if ($directory !== 'core' OR $prefix !== 'CI_') { throw new Exception('Not Implemented: Non-core load_class()'); } |