예제 #1
0
파일: Promise.php 프로젝트: khelle/surume
 /**
  * @return mixed|null
  */
 public function value()
 {
     return $this->isFulfilled() ? $this->result->value() : null;
 }