<?php namespace App\Komma\Excel\Types\Row; class TitleRow { public string $name; public function __construct(string $name) { $this->name = $name; } }