Skip to content

Commit

Permalink
exception fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shaxzodbek-uzb authored Nov 14, 2023
1 parent 14d0e9c commit 900e40f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Classes/Paynet/Paynet.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function run()
$body = Response::makeResponse($this->GetInformation());
break;
default:
$this->response->response($this->request, 'Method not found.', PaynetException::ERROR_METHOD_NOT_FOUND);
$this->response->response($this->request, 'Method not found.', Response::ERROR_METHOD_NOT_FOUND);
}
$this->response->response($this->request, $body, Response::SUCCESS);
}
Expand Down

0 comments on commit 900e40f

Please sign in to comment.