vendor/netgen/layouts-core/lib/View/View/LayoutView.php line 10
<?phpdeclare(strict_types=1);namespace Netgen\Layouts\View\View;use Netgen\Layouts\API\Values\Layout\Layout;use Netgen\Layouts\View\View;final class LayoutView extends View implements LayoutViewInterface{public function __construct(Layout $layout){$this->parameters['layout'] = $layout;}public function getLayout(): Layout{return $this->parameters['layout'];}public static function getIdentifier(): string{return 'layout';}}