absent() 개인적인 정적인 메소드

private static absent ( )
예제 #1
0
 public function __get($field)
 {
     if (!property_exists($this->object, $field)) {
         return Optional::absent();
     }
     return Optional::fromNullable($this->object->{$field});
 }