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 * @param $lines
*
* @throws \SMB\NotFoundException
* @throws \SMB\AlreadyExistsException
* @throws \SMB\AccessDeniedException
* @throws \SMB\NotEmptyException
* @throws \Exception
* @return bool * @return bool
*/ */
protected function parseOutput($lines) { protected function parseOutput($lines) {

View file

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