Skip to content

Commit

Permalink
addressed == -> === suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
cordoval committed Dec 30, 2013
1 parent 69a266a commit 5a3d2d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Filesystem.php
Expand Up @@ -41,7 +41,7 @@ public function copy($originFile, $targetFile, $override = false)

$this->mkdir(dirname($targetFile));

if (!$override && is_file($targetFile) && null == parse_url($originFile, PHP_URL_HOST)) {
if (!$override && is_file($targetFile) && null === parse_url($originFile, PHP_URL_HOST)) {
$doCopy = filemtime($originFile) > filemtime($targetFile);
} else {
$doCopy = true;
Expand Down

0 comments on commit 5a3d2d0

Please sign in to comment.