System/SSH/Agent: fix namespacing on BadConfigurationException

This commit is contained in:
terrafrost 2016-04-10 11:48:08 -05:00
parent 324a973ec1
commit ceb6dc0255

View File

@ -130,7 +130,7 @@ class Agent
$address = $_ENV['SSH_AUTH_SOCK'];
break;
default:
throw new \BadConfigurationException('SSH_AUTH_SOCK not found');
throw new BadConfigurationException('SSH_AUTH_SOCK not found');
}
$this->fsock = fsockopen('unix://' . $address, 0, $errno, $errstr);