Skip to content

Commit

Permalink
Fix php-cs-fixer config
Browse files Browse the repository at this point in the history
  • Loading branch information
akondas committed Sep 19, 2023
1 parent 6c0f492 commit 93a33ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
Expand Down
1 change: 1 addition & 0 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
'phpdoc_separation' => true,
'single_quote' => true,
'trim_array_spaces' => true,
'blank_lines_before_namespace' => false,
'single_blank_line_before_namespace' => true,
'yoda_style' => [
'equal' => null,
Expand Down
2 changes: 1 addition & 1 deletion src/Collection/Stream.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static function empty(): self
/**
* @return Stream<int>
*/
public static function range(int $start = 1, ?int $end = null): self
public static function range(int $start = 1, int $end = null): self
{
if ($start === $end) {
return self::of($start);
Expand Down

0 comments on commit 93a33ae

Please sign in to comment.