for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sfneal\Queries;
use Sfneal\Queries\Interfaces\DynamicQuery;
use Sfneal\Queries\Traits\ApplyFilter;
abstract class AbstractQueryWithFilter extends AbstractQuery implements DynamicQuery
{
// Uses Filter classes for applying queries
use ApplyFilter;
/**
* Array of attribute/form input name keys and Filter class values.
*
* @var array
*/
public $attribute_filters;
* Filter values to be passed to Filer classes.
public $filter;
* QueryWithFilter constructor.
* @param string $filter name of the bucket to filter by
public function __construct($filter)
$this->filter = $filter;
$filter
string
array
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..
}
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..