for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebServCo\Framework\DataTables;
class Search
{
protected $value;
protected $regex;
public function __construct($value, $regex)
$this->value = $value;
$this->regex = (bool) $regex;
}
public function getValue()
return $this->value;