Skip to content

Commit 4174e1a

Browse files
committed
Make exceptions final
1 parent c630ab7 commit 4174e1a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Exception/ClientException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
*
88
* @author Márk Sági-Kazár <[email protected]>
99
*/
10-
class ClientException extends HttpException
10+
final class ClientException extends HttpException
1111
{
1212
}

src/Exception/NetworkException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
*
88
* @author Márk Sági-Kazár <[email protected]>
99
*/
10-
class NetworkException extends RequestException
10+
final class NetworkException extends RequestException
1111
{
1212
}

src/Exception/ServerException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
*
88
* @author Márk Sági-Kazár <[email protected]>
99
*/
10-
class ServerException extends HttpException
10+
final class ServerException extends HttpException
1111
{
1212
}

0 commit comments

Comments
 (0)