Skip to content

Commit

Permalink
feat: upgrade to php 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lalcebo committed Apr 19, 2024
1 parent 07f7042 commit e4c1f61
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}

- name: Use PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion src/Arr.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static function flatten(array $array, int $depth = -1): array
*
* @param array<int|string,mixed> $array Multidimensional key array.
* @param string $glue Separator to use on a key.
* @return array<int,mixed>
* @return array<int|string,mixed>
*/
public static function flattenWithKeys(array $array, int $depth = -1, string $glue = '_'): array
{
Expand Down

0 comments on commit e4c1f61

Please sign in to comment.