Doctrine\DBAL\Query\Expression\CompositeExpression::getType PHP Метод

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

Returns the type of this composite expression (AND/OR).
public getType ( ) : string
Результат string
    public function getType()
    {
        return $this->type;
    }

Usage Example

Пример #1
0
 /**
  * Returns the type of this composite expression (AND/OR).
  *
  * @return string
  */
 public function getType()
 {
     return $this->compositeExpression->getType();
 }