コード例 #1
0
ファイル: Promise.php プロジェクト: khelle/surume
 /**
  * @return mixed|null
  */
 public function value()
 {
     return $this->isFulfilled() ? $this->result->value() : null;
 }