Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
fusiondirectory
fusiondirectory
Commits
165d8163
Verified
Commit
165d8163
authored
1 month ago
by
dockx thibault
Browse files
Options
Download
Patches
Plain Diff
(Core) - fiing listingEntry
Fixing listingEntry
parent
bfcc22dc
core-php8
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/management/class_ListingEntry.inc
+5
-5
include/management/class_ListingEntry.inc
with
5 additions
and
5 deletions
+5
-5
include/management/class_ListingEntry.inc
+
5
−
5
View file @
165d8163
...
@@ -57,24 +57,24 @@ class ListingEntry implements ArrayAccess
...
@@ -57,24 +57,24 @@ class ListingEntry implements ArrayAccess
$this
->
row
=
$row
;
$this
->
row
=
$row
;
}
}
public
function
offsetSet
(
$offset
,
$value
)
public
function
offsetSet
(
$offset
,
$value
)
:
void
{
{
$this
->
attrs
[
$offset
]
=
$value
;
$this
->
attrs
[
$offset
]
=
$value
;
}
}
public
function
offsetExists
(
$offset
)
public
function
offsetExists
(
$offset
)
:
bool
{
{
return
isset
(
$this
->
attrs
[
$offset
]);
return
isset
(
$this
->
attrs
[
$offset
]);
}
}
public
function
offsetUnset
(
$offset
)
public
function
offsetUnset
(
$offset
)
:
void
{
{
unset
(
$this
->
attrs
[
$offset
]);
unset
(
$this
->
attrs
[
$offset
]);
}
}
public
function
offsetGet
(
$offset
)
public
function
offsetGet
(
$offset
)
:
mixed
{
{
return
(
isset
(
$this
->
attrs
[
$offset
]
)
?
$this
->
attrs
[
$offset
]
:
NULL
);
return
(
$this
->
attrs
[
$offset
]
?
?
NULL
);
}
}
public
function
getPid
():
string
public
function
getPid
():
string
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets