Skip to content

Commit 0fddba4

Browse files
author
Martin Brecht-Precht
committed
Switched to PHP Common Exceptions.
Updated readme.
1 parent 680a62b commit 0fddba4

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

README.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ To use Yubico OTP you need YubiCloud access. You can get free API credentials fr
4444
#### Validating a Yubico one time password
4545

4646
```{php}
47+
use CommonException\NetworkException\Base\NetworkException;
48+
4749
$otp = $_POST['otp'];
4850
$userPublicId = 'fetchedFromDatabaseOrSimilar';
4951
@@ -55,7 +57,7 @@ try {
5557
} else {
5658
// Validation failed
5759
}
58-
} catch (OathServerSuite\Exception\NetworkException $exception) {
60+
} catch (NetworkException $exception) {
5961
// Accessing the YubiCloud webservice failed.
6062
}
6163
```
@@ -278,6 +280,15 @@ if ($validator->isValid()) {
278280
}
279281
```
280282

283+
---
284+
285+
## Exception handling
286+
287+
PHP Oath Server Suite provides different exceptions – some provided by the PHP Common Exceptions project – for proper handling.
288+
You can find more information about [PHP Common Exceptions at Github](https://github.com/markenwerk/php-common-exceptions).
289+
290+
---
291+
281292
## Contribution
282293

283294
Contributing to our projects is always very appreciated.

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"require": {
2929
"php": ">=5.3",
3030
"lib-curl": "*",
31+
"markenwerk/common-exceptions": "~2.0",
3132
"markenwerk/qr-code-suite": "~3.0",
3233
"enygma/yubikey": "~3.0",
3334
"skleeschulte/base32": "*"

src/Exception/NetworkException.php

-13
This file was deleted.

src/Validation/YubicoOtp/Validator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace OathServerSuite\Validation\YubicoOtp;
44

5-
use OathServerSuite\Exception\NetworkException;
5+
use CommonException\NetworkException\Base\NetworkException;
66
use OathServerSuite\Exception\ParserException;
77
use Yubikey\Validate;
88

0 commit comments

Comments
 (0)