CustomCriteriaLeaf::__construct PHP Метод

__construct() публичный Метод

public __construct ( )
        public function __construct()
        {
            parent::__construct();
        }

Usage Example

 public function __construct($keyId = null, $valueIds = null, $operator = null)
 {
     parent::__construct();
     $this->keyId = $keyId;
     $this->valueIds = $valueIds;
     $this->operator = $operator;
 }
All Usage Examples Of CustomCriteriaLeaf::__construct