for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Folk\Formats\Traits;
trait CollectionValueTrait
{
/**
* Returns the value as html.
*
* @return string
*/
public function valToHtml()
$html = '<ul>';
foreach ($this as $field) {
$this
this<Folk\Formats\Traits\CollectionValueTrait>
$html .= '<li>'.$field->valToHtml().'</li>';
}
$html .= '</ul>';
return $html;