summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-23 10:39:03 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-25 16:06:09 +0200
commitb9a26bca3ba0a8f3b30c55ff58615e41cf2e5825 (patch)
treeeab86c974e9efcc1e0b85eafcfb8adc75bfad705 /apps/user_ldap
parenta4980a3de49adda10820ab51fb75fb819c7bde9b (diff)
downloadnextcloud-server-b9a26bca3ba0a8f3b30c55ff58615e41cf2e5825.tar.gz
nextcloud-server-b9a26bca3ba0a8f3b30c55ff58615e41cf2e5825.zip
Fix throws docs
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php b/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php
index fd3edcbf0c0..06c2585fb0b 100644
--- a/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php
+++ b/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php
@@ -89,7 +89,7 @@ class ExceptionOnLostConnection {
* the LDAP backend, as well as getting information about toxiproxy.
* Also creates an instance of the LDAP class, the testee
*
- * @throws Exception
+ * @throws \Exception
*/
public function setUp() {
require_once __DIR__ . '/../../../../lib/base.php';
@@ -145,7 +145,7 @@ class ExceptionOnLostConnection {
*
* @param resource $ch
* @param mixed $result
- * @throws Exception
+ * @throws \Exception
*/
private function checkCurlResult($ch, $result) {
if($result === false) {
@@ -159,7 +159,7 @@ class ExceptionOnLostConnection {
* enables or disabled the LDAP proxy service in toxiproxy
*
* @param bool $isEnabled whether is should be enabled or disables
- * @throws Exception
+ * @throws \Exception
*/
private function setProxyState($isEnabled) {
if(!is_bool($isEnabled)) {