Code style fixes.

This commit is contained in:
Dmitry Khomutov 2017-11-05 21:48:36 +07:00
commit 4e68eb7180
No known key found for this signature in database
GPG key ID: EC19426474B37AAC
89 changed files with 942 additions and 251 deletions

View file

@ -46,11 +46,13 @@ class ProjectService
/**
* Update the properties of a given project.
*
* @param Project $project
* @param string $title
* @param string $type
* @param string $reference
* @param array $options
*
* @return \PHPCensor\Model\Project
*/
public function updateProject(Project $project, $title, $type, $reference, $options = [])
@ -111,7 +113,9 @@ class ProjectService
/**
* Delete a given project.
*
* @param Project $project
*
* @return bool
*/
public function deleteProject(Project $project)
@ -121,7 +125,9 @@ class ProjectService
/**
* In circumstances where it is necessary, populate access information based on other project properties.
*
* @see ProjectService::createProject()
*
* @param Project $project
*/
protected function processAccessInformation(Project &$project)