From 30056f50fcac4cb3a0860edd72b9e5847a399264 Mon Sep 17 00:00:00 2001 From: malle-pietje Date: Mon, 14 Oct 2024 14:34:48 +0200 Subject: [PATCH] - bumped version to 1.1.96 - removed @version tag in docblock as it contained redundant information - merged #241 which adds a method to download a generated backup, (contributed by @Jacobtims) --- src/Client.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Client.php b/src/Client.php index db9c95d..f523766 100755 --- a/src/Client.php +++ b/src/Client.php @@ -13,7 +13,6 @@ namespace UniFi_API; * * @package UniFi_Controller_API_Client_Class * @author Art of WiFi - * @version Release: 1.1.92 * @license This class is subject to the MIT license that is bundled with this package in the file LICENSE.md * @example This directory in the package repository contains a collection of examples: * https://github.com/Art-of-WiFi/UniFi-API-client/tree/master/examples @@ -21,7 +20,7 @@ namespace UniFi_API; class Client { /** Constants. */ - const CLASS_VERSION = '1.1.95'; + const CLASS_VERSION = '1.1.96'; const CURL_METHODS_ALLOWED = ['GET', 'POST', 'PUT', 'DELETE', 'PATCH']; const DEFAULT_CURL_METHOD = 'GET';