whereEquals() public method

Adds a where equals clause to the current query.
public whereEquals ( string $field, string $value ) : Builder
$field string
$value string
return Builder
コード例 #1
0
ファイル: Factory.php プロジェクト: vortextangent/Adldap2
 /**
  * Returns a query builder limited to exchange servers.
  *
  * @return Builder
  */
 public function computers()
 {
     return $this->query->whereEquals($this->schema->objectCategory(), $this->schema->objectCategoryComputer());
 }