Skip to content

Commit 885857c

Browse files
committed
Added 1 more strict bool check
1 parent ae8fab2 commit 885857c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Symfony/src/Codebender/CompilerBundle/Handler/CompilerHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function main($request, $compiler_config)
107107

108108
// Step 2: Preprocess Arduino source files.
109109
$tmp = $this->preprocessIno($files["sketch_files"]);
110-
if ($tmp["success"] == false)
110+
if ($tmp["success"] === false)
111111
return array_merge($tmp, ($ARCHIVE_OPTION ===true) ? array("archive" => $ARCHIVE_PATH) : array());
112112

113113
// Step 3: Preprocess Header includes and determine which core files directory(CORE_DIR) will be used.

0 commit comments

Comments
 (0)