absent() private static method

private static absent ( )
Ejemplo n.º 1
0
 public function __get($field)
 {
     if (!property_exists($this->object, $field)) {
         return Optional::absent();
     }
     return Optional::fromNullable($this->object->{$field});
 }