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

@ -12,8 +12,19 @@ use b8\Exception\HttpException;
*/
class ProjectStore extends Store
{
/**
* @var string
*/
protected $tableName = 'project';
/**
* @var string
*/
protected $modelName = '\PHPCensor\Model\Project';
/**
* @var string
*/
protected $primaryKey = 'id';
/**
@ -60,7 +71,12 @@ class ProjectStore extends Store
/**
* Get a single Project by Ids.
* @param int[]
*
* @param integer[] $values
* @param string $useConnection
*
* @throws HttpException
*
* @return Project[]
*/
public function getByIds($values, $useConnection = 'read')