for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nord\Lumen\Elasticsearch\Search\Query\Traits;
/**
* Trait HasValues
* @package Nord\Lumen\Elasticsearch\Search\Query\Traits
*/
trait HasValues
{
* @var array
protected $values;
* @return array
public function getValues()
return $this->values;
}
* @param array $values
*
* @return $this
public function setValues($values)
$this->values = $values;
return $this;