Trait FieldTrait
Contains the field property with a getter and a setter for it
        
    Namespace: Cake\Database\Expression
    
    
    
      
  
      Property Summary
- 
        $_field protectedCake\Database\ExpressionInterface|array|stringThe field name or expression to be used in the left hand side of the operator 
Method Summary
- 
          getField() publicReturns the field name 
- 
          setField() publicSets the field name 
Method Detail
getField() ¶ public
getField(): Cake\Database\ExpressionInterface|array|stringReturns the field name
Returns
Cake\Database\ExpressionInterface|array|stringsetField() ¶ public
setField(Cake\Database\ExpressionInterface|array|string $field): voidSets the field name
Parameters
- 
                Cake\Database\ExpressionInterface|array|string$field
- The field to compare with. 
Returns
voidProperty Detail
$_field ¶ protected
The field name or expression to be used in the left hand side of the operator
Type
Cake\Database\ExpressionInterface|array|string