Fixed namespaces in docblocks (PHPCI -> PHPCensor)

This commit is contained in:
Dmitry Khomutov 2016-07-21 23:20:59 +06:00
commit 32f5c01728
89 changed files with 167 additions and 168 deletions

View file

@ -21,12 +21,12 @@ use PHPCensor\Store\BuildStore;
/**
* The build service handles the creation, duplication and deletion of builds.
* Class BuildService
* @package PHPCI\Service
* @package PHPCensor\Service
*/
class BuildService
{
/**
* @var \PHPCI\Store\BuildStore
* @var \PHPCensor\Store\BuildStore
*/
protected $buildStore;
@ -50,7 +50,7 @@ class BuildService
* @param string|null $committerEmail
* @param string|null $commitMessage
* @param string|null $extra
* @return \PHPCI\Model\Build
* @return \PHPCensor\Model\Build
*/
public function createBuild(
Project $project,
@ -105,7 +105,7 @@ class BuildService
/**
* @param Build $copyFrom
* @return \PHPCI\Model\Build
* @return \PHPCensor\Model\Build
*/
public function createDuplicateBuild(Build $copyFrom)
{