<?php class Foo { private array $array = [['value' => 'Test']]; public function getValue() { return $this->array; } public function doSomething() { return array_map(fn($x) => $x ?? null, ...$this->getValue())['value'] ?? null; } } print_r((new Foo)->doSomething());
You have javascript disabled. You will not be able to edit any code.