summaryrefslogtreecommitdiffstats
path: root/lib/public/Http/Client/IClientService.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Http/Client/IClientService.php')
-rw-r--r--lib/public/Http/Client/IClientService.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/Http/Client/IClientService.php b/lib/public/Http/Client/IClientService.php
index 09a1f1f7b40..d34302744e1 100644
--- a/lib/public/Http/Client/IClientService.php
+++ b/lib/public/Http/Client/IClientService.php
@@ -1,4 +1,5 @@
<?php
+declare(strict_types=1);
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
@@ -34,5 +35,5 @@ interface IClientService {
* @return IClient
* @since 8.1.0
*/
- public function newClient();
+ public function newClient(): IClient;
}