diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-08-01 15:07:53 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-08-01 15:07:53 +0200 |
commit | cb271b759e27c4c26c0e60b7503350682aca33eb (patch) | |
tree | 8abf40b337b3f195a8bee32e02851a1e430c8c0a /tests/lib/DirectEditing | |
parent | f74e89bde5892a68500eeea3fa98a511b1d7f7e9 (diff) | |
download | nextcloud-server-cb271b759e27c4c26c0e60b7503350682aca33eb.tar.gz nextcloud-server-cb271b759e27c4c26c0e60b7503350682aca33eb.zip |
Fix dynamic property creations in test files
This fixes warnings in PHP 8.2
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'tests/lib/DirectEditing')
-rw-r--r-- | tests/lib/DirectEditing/ManagerTest.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/DirectEditing/ManagerTest.php b/tests/lib/DirectEditing/ManagerTest.php index b00de02bcf5..e19c44b1a06 100644 --- a/tests/lib/DirectEditing/ManagerTest.php +++ b/tests/lib/DirectEditing/ManagerTest.php @@ -106,6 +106,10 @@ class ManagerTest extends TestCase { */ private $userFolder; /** + * @var MockObject|IL10N + */ + private $l10n; + /** * @var MockObject|IManager */ private $encryptionManager; |