Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tables
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
grifart libs
tables
Merge requests
!56
chore: freshen this package up
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
chore: freshen this package up
update
into
master
Overview
0
Commits
4
Pipelines
2
Changes
19
Merged
Jiří Pudil
requested to merge
update
into
master
2 months ago
Overview
0
Commits
4
Pipelines
2
Changes
1
Expand
bump PHP requirement to 8.2
ensure compatibility with PHP 8.4
update to PHPStan 2
0
0
Merge request reports
Compare
version 1
version 1
d1f1fe14
2 months ago
master (base)
and
latest version
latest version
b951d18e
4 commits,
2 months ago
version 1
d1f1fe14
3 commits,
2 months ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Types/ArrayType.php
+
1
−
1
Options
@@ -74,7 +74,7 @@ final class ArrayType implements Type // @todo: There is implicit support for nu
public
function
fromDatabase
(
mixed
$value
):
array
{
$result
=
$this
->
parseArray
(
$value
);
return
map
(
return
map
(
// @phpstan-ignore return.type (will be fixed in later commits)
$result
,
fn
(
$item
)
=>
$item
!==
null
?
$this
->
itemType
->
fromDatabase
(
$item
)
:
null
,
);
Loading