Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fab2s committed Apr 15, 2018
1 parent 53c07a9 commit e60146b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Extractors/File/CsvExtractor.php
Expand Up @@ -49,7 +49,7 @@ public function getTraversable($param = null)
return;
}

if (false == ($firstLine = $this->getNextNonEmptyLine(true))) {
if (false === ($firstLine = $this->getNextNonEmptyLine(true))) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Extractors/File/FileExtractorAbstract.php
Expand Up @@ -49,7 +49,7 @@ public function extract($param = null)
/**
* @param bool $lookUpBom
*
* @return string|bool
* @return string|false
*/
protected function getNextNonEmptyLine($lookUpBom = false)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Traits/FileHandlerTrait.php
Expand Up @@ -75,7 +75,7 @@ public function setUseBom($useBom)
/**
* @param string $string
*
* @return bool
* @return string
*/
public function readBom($string)
{
Expand All @@ -91,7 +91,7 @@ public function readBom($string)
/**
* @param string $string
*
* @return bool
* @return string
*/
public function prependBom($string)
{
Expand Down

0 comments on commit e60146b

Please sign in to comment.