]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix throws docs
authorJoas Schilling <nickvergessen@owncloud.com>
Mon, 23 May 2016 08:39:03 +0000 (10:39 +0200)
committerJoas Schilling <nickvergessen@owncloud.com>
Wed, 25 May 2016 14:06:09 +0000 (16:06 +0200)
apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php

index fd3edcbf0c000d2895457035263df7b9aba09cdc..06c2585fb0bf471c4029ecbce98b638ef95ff97b 100644 (file)
@@ -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)) {