| Total Complexity | 2 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 11 | class WhereIn implements CriteriaInterface  | 
            ||
| 12 | { | 
            ||
| 13 | protected $field = NULL;  | 
            ||
| 14 | protected $list = [];  | 
            ||
| 15 | |||
| 16 | /**  | 
            ||
| 17 | * WhereIn constructor.  | 
            ||
| 18 | * @param $field  | 
            ||
| 19 | * @param array $list  | 
            ||
| 20 | */  | 
            ||
| 21 | public function __construct( $field, array $list )  | 
            ||
| 25 | }  | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 | * @param mixed $queryBuilder  | 
            ||
| 29 | * @return mixed  | 
            ||
| 30 | */  | 
            ||
| 31 | public function apply( $queryBuilder )  | 
            ||
| 38 |