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

Creates the expression.
public __construct ( string $methodName, array $arguments, Webmozart\Expression\Expression $expr )
$methodName string The name of the method to call.
$arguments array The arguments to pass to the method.
$expr Webmozart\Expression\Expression The expression to evaluate for the result.
Пример #1
0
 public function __construct()
 {
     parent::__construct('getBookings', array(), Expr::count(Expr::greaterThan(0)));
 }
Пример #2
0
 public function __construct()
 {
     parent::__construct('isPremium', array(), Expr::same(true));
 }