From 39402f7dab018c911783cb38a42dff124ae42d65 Mon Sep 17 00:00:00 2001 From: zgrguric Date: Sat, 4 Nov 2023 10:21:16 +0100 Subject: [PATCH] Manifest method --- src/Api/Methods/Manifest.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/Api/Methods/Manifest.php diff --git a/src/Api/Methods/Manifest.php b/src/Api/Methods/Manifest.php new file mode 100644 index 0000000..d926100 --- /dev/null +++ b/src/Api/Methods/Manifest.php @@ -0,0 +1,29 @@ +executed) + throw new NotSentException('Please send request first'); + + if(!$this->isSuccess()) + throw new NotSuccessException('Request did not return success result'); + + return $this->result()->result; + } +}