From d59da92f377ca65e4540d371dcb4e7f599f5d87c Mon Sep 17 00:00:00 2001 From: Jelle Luteijn Date: Tue, 20 Jun 2023 14:12:30 +0200 Subject: [PATCH] Update PdnsApi.php Creation of dynamic property PdnsAPI::$http is deprecated --- includes/class/PdnsApi.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/class/PdnsApi.php b/includes/class/PdnsApi.php index 0f9d8b7..404a22c 100644 --- a/includes/class/PdnsApi.php +++ b/includes/class/PdnsApi.php @@ -3,6 +3,9 @@ include_once('ApiHandler.php'); class PdnsAPI { + public $http; + + public function __construct() { $this->http = new ApiHandler(); }