for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ____ _ _ _ _
* | _ \| |__ | |_ ___ _ __ ___ __ _(_) |
* | |_) | '_ \| __/ _ \ '_ ` _ \ / _` | | |
* | __/| | | | || __/ | | | | | (_| | | |
* |_| |_| |_|\__\___|_| |_| |_|\__,_|_|_|
*
* This file is part of Kristuff\Phtemail.
* (c) Kristuff <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
* @version 0.2.0
* @copyright 2017-2020 Kristuff
*/
namespace Kristuff\Phtemail\HtmlElements;
use Kristuff\Phtemail\Core\HtmlElement;
* Class BreakLine
* Represents the break line html element, ie <br>
class BreakLine extends HtmlElement
{
* Get the HTML
* @access public
* @param string $indent
* @return string
public function getHtml(string $indent = '')
return $indent . '<br>';
}