Fix throws docs

This commit is contained in:
Joas Schilling 2016-05-23 10:39:03 +02:00
parent a4980a3de4
commit b9a26bca3b
No known key found for this signature in database
GPG key ID: 70A0B324C41C0946

View file

@ -89,7 +89,7 @@ class ExceptionOnLostConnection {
* the LDAP backend, as well as getting information about toxiproxy. * the LDAP backend, as well as getting information about toxiproxy.
* Also creates an instance of the LDAP class, the testee * Also creates an instance of the LDAP class, the testee
* *
* @throws Exception * @throws \Exception
*/ */
public function setUp() { public function setUp() {
require_once __DIR__ . '/../../../../lib/base.php'; require_once __DIR__ . '/../../../../lib/base.php';
@ -145,7 +145,7 @@ class ExceptionOnLostConnection {
* *
* @param resource $ch * @param resource $ch
* @param mixed $result * @param mixed $result
* @throws Exception * @throws \Exception
*/ */
private function checkCurlResult($ch, $result) { private function checkCurlResult($ch, $result) {
if($result === false) { if($result === false) {
@ -159,7 +159,7 @@ class ExceptionOnLostConnection {
* enables or disabled the LDAP proxy service in toxiproxy * enables or disabled the LDAP proxy service in toxiproxy
* *
* @param bool $isEnabled whether is should be enabled or disables * @param bool $isEnabled whether is should be enabled or disables
* @throws Exception * @throws \Exception
*/ */
private function setProxyState($isEnabled) { private function setProxyState($isEnabled) {
if(!is_bool($isEnabled)) { if(!is_bool($isEnabled)) {