Add @throws to phpdoc

This commit is contained in:
Robin Appelman 2013-03-14 23:27:26 +01:00
commit 114dae07e1
2 changed files with 9 additions and 0 deletions

View file

@ -35,6 +35,12 @@ abstract class Command {
/**
* @param $lines
*
* @throws \SMB\NotFoundException
* @throws \SMB\AlreadyExistsException
* @throws \SMB\AccessDeniedException
* @throws \SMB\NotEmptyException
* @throws \Exception
* @return bool
*/
protected function parseOutput($lines) {

View file

@ -18,6 +18,8 @@ class Put extends Command {
/**
* @param $lines
*
* @throws \SMB\NotFoundException
* @return bool
*/
protected function parseOutput($lines) {
@ -29,6 +31,7 @@ class Put extends Command {
} else {
parent::parseOutput($lines);
}
return false;
}
}
}