Comparator
    
            
            in package
            
        
    
    
    
Tags
Table of Contents
Methods
- __construct() : mixed
 - getOperator() : string
 - Gets the comparison operator.
 - getTarget() : string
 - Gets the target value.
 - test() : bool
 - Tests against the target.
 
Methods
__construct()
    public
                    __construct(string $target[, string $operator = '==' ]) : mixed
    Parameters
- $target : string
 - $operator : string = '=='
 
getOperator()
Gets the comparison operator.
    public
                    getOperator() : string
    Return values
stringgetTarget()
Gets the target value.
    public
                    getTarget() : string
    Return values
stringtest()
Tests against the target.
    public
                    test(mixed $test) : bool
    Parameters
- $test : mixed