Skip to content

Commit

Permalink
Fix doc blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
b2z committed Apr 17, 2023
1 parent 994d225 commit 2348751
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Robokassa.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ class Robokassa
* @param ?array $shopData Additional custom parameters.
*
* @return string
* @throws InvalidArgumentException
*
* @throws InvalidArgumentException
* @since 1.0
*/
public function getCallbackSignature(string $type, string $amount, int $invoiceId, array $shopData = null): string
Expand Down Expand Up @@ -141,10 +141,10 @@ public function getCallbackSignature(string $type, string $amount, int $invoiceI
*
* @param int $invoiceId Invoice Id.
*
* @return SimpleXMLElement SimpleXMLElement on success or false on error
* @return SimpleXMLElement
*
* @since 1.0
* @throws Exception
* @since 1.0
*/
public function getOperationState(int $invoiceId): SimpleXMLElement
{
Expand Down Expand Up @@ -220,8 +220,8 @@ public function getSignature(string $amount, int $invoiceId = 0, array $receipt
*
* @return $this
*
* @since 1.1
* @throws InvalidArgumentException
* @since 1.1
*/
public function setCountry(string $country): Robokassa
{
Expand Down Expand Up @@ -349,10 +349,10 @@ protected function getShopId(): string
* @param int $options Optionally used to specify additional Libxml parameters.
* @param boolean $isUrl True to load a file or URL false to load a string.
*
* @return SimpleXMLElement SimpleXMLElement on success or false on error
* @return SimpleXMLElement
*
* @since 1.0
* @throws Exception
* @since 1.0
*/
protected function getXML(string $data, int $options = 0, bool $isUrl = true): SimpleXMLElement
{
Expand Down

0 comments on commit 2348751

Please sign in to comment.