for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Itstructure\GridView\Formatters;
/**
* Class TextFormatter
* @package Itstructure\GridView\Formatters
*/
class TextFormatter extends BaseFormatter
{
* @var null|string
protected $allowableTags = null;
* Format value as simple text without html tags.
* @param $value
* @return mixed
public function format($value)
return strip_tags($value, $this->allowableTags);
}