Adldap\Schemas\SchemaInterface::false PHP Method

false() public method

The AD false bool in string form for conversion.
public false ( ) : string
return string
    public function false();

Usage Example

Example #1
0
 /**
  * Converts the inserted string boolean to a PHP boolean.
  *
  * @param string $bool
  *
  * @return null|bool
  */
 protected function convertStringToBool($bool)
 {
     $bool = strtoupper($bool);
     if ($bool === strtoupper($this->schema->false())) {
         return false;
     } elseif ($bool === strtoupper($this->schema->true())) {
         return true;
     } else {
         return;
     }
 }
SchemaInterface