blob: dd41344b7babf3e84388b0c83e8fe0ee4b3f3abb [file] [log] [blame]
<?php
namespace LdapRecord\Query\Model;
class OpenLdapBuilder extends Builder
{
/**
* Adds a enabled filter to the current query.
*
* @return $this
*/
public function whereEnabled()
{
return $this->rawFilter('(!(pwdAccountLockedTime=*))');
}
/**
* Adds a disabled filter to the current query.
*
* @return $this
*/
public function whereDisabled()
{
return $this->rawFilter('(pwdAccountLockedTime=*)');
}
}