for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Render the HTML element
*
* @author Tim Lochmüller
*/
namespace FRUIT\Ink\Rendering;
class Html extends AbstractRendering
{
* Get the liens for the current HTML element
* @return array
public function renderInternal()
return array($this->breakContent(strip_tags($this->contentObject->data['bodytext'])));
}