Skip to content

Commit

Permalink
Satisfy Code Climate.
Browse files Browse the repository at this point in the history
  • Loading branch information
JASchilz committed Sep 24, 2015
1 parent 18e2963 commit c40cad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EncryptionBehavior.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function tableMapFilter(&$script) {
$encryptedColumnsDeclarationLocation = strpos($script, "ENCRYPTED_COLUMNS");

// If there is not yet an encrypted column declared in this map...
if ($encryptedColumnsDeclarationLocation == False) {
if ($encryptedColumnsDeclarationLocation === False) {

// Insert after the CLASS_NAME declaration
$insertLocation = strpos($script, ";", strpos($script, "const CLASS_NAME")) + 1;
Expand Down

0 comments on commit c40cad7

Please sign in to comment.