File 0001-Remove-type-declaration-from-property.patch of Package iRony
From d0e899c9373eeadc9896117338ba072e579c6b00 Mon Sep 17 00:00:00 2001
Message-Id: <d0e899c9373eeadc9896117338ba072e579c6b00.1672257858.git.christoph.erhardt@sicherha.de>
From: Christoph Erhardt <kolab@sicherha.de>
Date: Wed, 28 Dec 2022 18:22:50 +0100
Subject: [PATCH] Remove type declaration from property
Summary: This syntax is not compatible with PHP < 7.4.0. Fixes T7097.
Reviewers: mollekopf
Maniphest Tasks: T7097
Differential Revision: https://git.kolab.org/D3968
---
lib/Kolab/CardDAV/LDAPDirectory.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/Kolab/CardDAV/LDAPDirectory.php b/lib/Kolab/CardDAV/LDAPDirectory.php
index 022eb6a..08c1d60 100644
--- a/lib/Kolab/CardDAV/LDAPDirectory.php
+++ b/lib/Kolab/CardDAV/LDAPDirectory.php
@@ -48,7 +48,7 @@ class LDAPDirectory extends DAV\Collection implements \Sabre\CardDAV\IDirectory,
protected $principalUri;
protected $addressBookInfo = array();
protected $cache;
- protected CardDAV\Xml\Request\AddressBookQueryReport $query;
+ protected $query;
protected $filter;
/**
--
2.38.1