valueIsSet() protected method

protected valueIsSet ( $message = 'Value is undefined' )
Beispiel #1
0
 protected function valueIsSet($message = 'Object is undefined')
 {
     if (self::isObject(parent::valueIsSet($message)->value) === false) {
         throw new exceptions\logic($message);
     }
     return $this;
 }
 protected function valueIsSet($message = 'Array is undefined')
 {
     return parent::valueIsSet($message);
 }