-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Description
this:
protected function firstItem(): ?CustomClass
{
if (count($this->list) < 1) {
return null;
}
return $this->list[0];
}
is beeing transformed to....
protected function firstItem(): ? CustomClass
{
if (count($this->list) < 1) {
return null;
}
return $this->list[0];
}
Due to several complainings with my colleages I disabled the "space resizing"
"excludes":
[
"ResizeSpaces"
],
... anyway maybe you could find a way to fix this in the next versions. THX
Metadata
Metadata
Assignees
Labels
No labels