> For the complete documentation index, see [llms.txt](https://venndev.gitbook.io/vapm/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://venndev.gitbook.io/vapm/promise/isjustgetresult.md).

# isJustGetResult()

```php
/**
 * This method is used to check if the promise is just to get the result.
 */
public function isJustGetResult(): bool;
```

This is a method used only to check whether a promise is a promise made immediately. In other words, this is the kind of promise that you don't need to keep **`resolve`** and **`reject`** callbacks.

When you call it returns a bool type.
