Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
nunomaduro
/
termwind
/
src
/
Components
:
Raw.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace Termwind\Components; /** * @internal */ final class Raw extends Element { /** * Get the string representation of the element. */ public function toString(): string { return is_array($this->content) ? implode('', $this->content) : $this->content; } }