Skip to content

Commit 01ca355

Browse files
committed
fix: fixed missing namespace for CouchException
1 parent ce97b31 commit 01ca355

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/CouchException.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<?php
2-
class CouchException extends Exception {
2+
namespace Phodoval\CouchDB;
33

4-
}
4+
use Exception;
5+
6+
class CouchException extends Exception {}

src/Database.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22
namespace Phodoval\CouchDB;
33

4-
use CouchException;
54
use GuzzleHttp\Exception\GuzzleException;
65

76
class Database {

0 commit comments

Comments
 (0)