isResolved) { $func($this->error, $this->result); } else { $this->whens[] = $func; } } /** * {@inheritDoc} */ public function watch(callable $func) { if (!$this->isResolved) { $this->watchers[] = $func; } } /** * {@inheritDoc} * @throws \LogicException if the promise has already resolved */ public function update($progress) { if ($this->isResolved) { throw new \LogicException( 'Cannot update resolved promise' ); } foreach ($this->watchers as $watcher) { $watcher($progress); } } /** * {@inheritDoc} * @throws \LogicException if the promise has already resolved or the result is the current instance */ public function succeed($result = null) { if ($this->isResolved) { throw new \LogicException( 'Promise already resolved' ); } elseif ($result === $this) { throw new \LogicException( 'A Promise cannot act as its own resolution result' ); } elseif ($result instanceof Promise) { $result->when(function(\Exception $error = null, $result = null) { if ($error) { $this->fail($error); } else { $this->succeed($result); } }); } else { $this->isResolved = true; $this->result = $result; $error = null; foreach ($this->whens as $when) { $when($error, $result); } $this->whens = $this->watchers = []; } } /** * {@inheritDoc} * @throws \LogicException if the promise has already resolved */ public function fail(\Exception $error) { if ($this->isResolved) { throw new \LogicException( 'Promise already resolved' ); } $this->isResolved = true; $this->error = $error; $result = null; foreach ($this->whens as $when) { $when($error, $result); } $this->whens = $this->watchers = []; } }