valueIsSet() 보호된 메소드

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