blob: 5e3d43fefd2c74c1fc8539a4fd2cfe07753e7789 [file] [log] [blame]
<?php
namespace LdapRecord\Query\Model;
class FreeIpaBuilder 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=*)');
}
}