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)
{

View file

@ -14,7 +14,7 @@ use PHPCensor\Model\Build;
/**
* Class BuildStatusService
* @package PHPCI\Service
* @package PHPCensor\Service
*/
class BuildStatusService
{

View file

@ -15,12 +15,12 @@ use PHPCensor\Store\ProjectStore;
/**
* The project service handles the creation, modification and deletion of projects.
* Class ProjectService
* @package PHPCI\Service
* @package PHPCensor\Service
*/
class ProjectService
{
/**
* @var \PHPCI\Store\ProjectStore
* @var \PHPCensor\Store\ProjectStore
*/
protected $projectStore;
@ -38,7 +38,7 @@ class ProjectService
* @param string $type
* @param string $reference
* @param array $options
* @return \PHPCI\Model\Project
* @return \PHPCensor\Model\Project
*/
public function createProject($title, $type, $reference, $options = [])
{
@ -54,7 +54,7 @@ class ProjectService
* @param string $type
* @param string $reference
* @param array $options
* @return \PHPCI\Model\Project
* @return \PHPCensor\Model\Project
*/
public function updateProject(Project $project, $title, $type, $reference, $options = [])
{

View file

@ -15,12 +15,12 @@ use PHPCensor\Store\UserStore;
/**
* The user service handles the creation, modification and deletion of users.
* Class UserService
* @package PHPCI\Service
* @package PHPCensor\Service
*/
class UserService
{
/**
* @var \PHPCI\Store\UserStore
* @var \PHPCensor\Store\UserStore
*/
protected $store;
@ -38,7 +38,7 @@ class UserService
* @param $emailAddress
* @param $password
* @param bool $isAdmin
* @return \PHPCI\Model\User
* @return \PHPCensor\Model\User
*/
public function createUser($name, $emailAddress, $password, $isAdmin = false)
{
@ -58,7 +58,7 @@ class UserService
* @param $emailAddress
* @param null $password
* @param null $isAdmin
* @return \PHPCI\Model\User
* @return \PHPCensor\Model\User
*/
public function updateUser(User $user, $name, $emailAddress, $password = null, $isAdmin = null)
{