Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nadar authored and github-actions[bot] committed Feb 14, 2024
1 parent 1d6f013 commit e415782
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/ImportHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class ImportHelper
{
public static function csvFromResource($resource, array $options = []) : array
public static function csvFromResource($resource, array $options = []): array
{
if (!is_resource($resource)) {
throw new \InvalidArgumentException("The provided resource is not a valid resource.");
Expand Down Expand Up @@ -80,7 +80,7 @@ public static function csv($filename, array $options = [])
fwrite($resource, $filename);
rewind($resource);
}

return self::csvFromResource($resource, $options);
}
}

0 comments on commit e415782

Please sign in to comment.