From 1078e47b7ee26e35a7ea5545692976515c41a203 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Tue, 23 Jun 2020 19:36:17 +0300 Subject: [PATCH] Add missing uses --- SourceQuery/GoldSourceRcon.php | 2 ++ SourceQuery/SourceQuery.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/SourceQuery/GoldSourceRcon.php b/SourceQuery/GoldSourceRcon.php index 5eaa06f..3a94d6c 100644 --- a/SourceQuery/GoldSourceRcon.php +++ b/SourceQuery/GoldSourceRcon.php @@ -13,6 +13,7 @@ namespace xPaw\SourceQuery; use xPaw\SourceQuery\Exception\AuthenticationException; + use xPaw\SourceQuery\Exception\InvalidPacketException; /** * Class GoldSourceRcon @@ -20,6 +21,7 @@ * @package xPaw\SourceQuery * * @uses xPaw\SourceQuery\Exception\AuthenticationException + * @uses xPaw\SourceQuery\Exception\InvalidPacketException */ class GoldSourceRcon { diff --git a/SourceQuery/SourceQuery.php b/SourceQuery/SourceQuery.php index 8e6334d..af8edcd 100644 --- a/SourceQuery/SourceQuery.php +++ b/SourceQuery/SourceQuery.php @@ -12,6 +12,7 @@ namespace xPaw\SourceQuery; + use xPaw\SourceQuery\Exception\AuthenticationException; use xPaw\SourceQuery\Exception\InvalidArgumentException; use xPaw\SourceQuery\Exception\InvalidPacketException; use xPaw\SourceQuery\Exception\SocketException; @@ -21,6 +22,7 @@ * * @package xPaw\SourceQuery * + * @uses xPaw\SourceQuery\Exception\AuthenticationException * @uses xPaw\SourceQuery\Exception\InvalidArgumentException * @uses xPaw\SourceQuery\Exception\InvalidPacketException * @uses xPaw\SourceQuery\Exception\SocketException