Docblock fixes

This commit is contained in:
Dan Cryer 2015-10-05 14:11:43 +01:00
parent 183d7d9e50
commit b2ed9f102b
2 changed files with 8 additions and 2 deletions

View file

@ -134,7 +134,10 @@ class BuildService
return $this->buildStore->delete($build);
}
/**
* Takes a build and puts it into the queue to be run (if using a queue)
* @param Build $build
*/
public function addBuildToQueue(Build $build)
{
$config = Config::getInstance();

View file

@ -12,7 +12,10 @@ use PHPCI\BuildFactory;
use PHPCI\Logging\BuildDBLogHandler;
use PHPCI\Model\Build;
/**
* Class BuildWorker
* @package PHPCI\Worker
*/
class BuildWorker
{
/**