X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/nunomaduro/termwind/src/Components
home
/
prisjneg
/
public_html
/
vendor
/
nunomaduro
/
termwind
/
src
/
Components
/
📁
..
📄
Anchor.php
(103 B)
📄
BreakLine.php
(509 B)
📄
Dd.php
(163 B)
📄
Div.php
(156 B)
📄
Dl.php
(155 B)
📄
Dt.php
(168 B)
📄
Element.php
(3.24 KB)
📄
Hr.php
(167 B)
📄
Li.php
(155 B)
📄
Ol.php
(171 B)
📄
Paragraph.php
(170 B)
📄
Raw.php
(330 B)
📄
Span.php
(112 B)
📄
Ul.php
(168 B)
Editing: BreakLine.php
<?php declare(strict_types=1); namespace Termwind\Components; final class BreakLine extends Element { /** * Get the string representation of the element. */ public function toString(): string { $display = $this->styles->getProperties()['styles']['display'] ?? 'inline'; if ($display === 'hidden') { return ''; } if ($display === 'block') { return parent::toString(); } return parent::toString()."\r"; } }
Upload File
Create Folder