protected function camelize(string $id) : string { return strtr(ucwords(strtr($id, [ '_' => ' ', '.' => '_ ', '\\' => '_ ', ])), [ ' ' => '', ]); }