@@ -40,7 +40,6 @@ |
||
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
43 | - * @param ContainerInterface $serviceLocator |
|
44 | 43 | * @return mixed|Paginator |
45 | 44 | */ |
46 | 45 | public function createService(ContainerInterface $container) |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
39 | - * @param $name |
|
39 | + * @param string $name |
|
40 | 40 | * |
41 | 41 | * @return mixed |
42 | 42 | */ |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | /** |
60 | 60 | * @param array $data |
61 | 61 | * |
62 | - * @return mixed |
|
62 | + * @return EntityInterface |
|
63 | 63 | */ |
64 | 64 | public function create(array $data = null, $persist = false) |
65 | 65 | { |
@@ -120,7 +120,7 @@ |
||
120 | 120 | return $this; |
121 | 121 | } |
122 | 122 | |
123 | - public function remove($entity, $flush=false) |
|
123 | + public function remove($entity, $flush = false) |
|
124 | 124 | { |
125 | 125 | $this->checkEntityType($entity); |
126 | 126 | $this->dm->remove($entity); |
@@ -108,6 +108,9 @@ |
||
108 | 108 | return $entities; |
109 | 109 | } |
110 | 110 | |
111 | + /** |
|
112 | + * @return string |
|
113 | + */ |
|
111 | 114 | protected function getRepositoryName() |
112 | 115 | { |
113 | 116 | if (0 === strpos($this->repositoryName, '\\')) { |
@@ -98,7 +98,7 @@ |
||
98 | 98 | $repository = $dm->getRepository($repositoryName); |
99 | 99 | |
100 | 100 | $criteria = array( |
101 | - 'permissions.assigned.' . $resourceId => array( |
|
101 | + 'permissions.assigned.'.$resourceId => array( |
|
102 | 102 | '$exists' => true |
103 | 103 | ) |
104 | 104 | ); |
@@ -31,7 +31,7 @@ |
||
31 | 31 | |
32 | 32 | /** |
33 | 33 | * @param mixed $value |
34 | - * @param null $queryBuilder |
|
34 | + * @param \Doctrine\ODM\MongoDB\Query\Builder $queryBuilder |
|
35 | 35 | * @return mixed |
36 | 36 | * @throws \DomainException |
37 | 37 | */ |
@@ -43,7 +43,7 @@ |
||
43 | 43 | |
44 | 44 | if ($this->repositoryName) { |
45 | 45 | $nameParts = explode('/', $this->repositoryName); |
46 | - $entityClass = $nameParts[0] . '\\Entity\\' . $nameParts[1]; |
|
46 | + $entityClass = $nameParts[0].'\\Entity\\'.$nameParts[1]; |
|
47 | 47 | $queryBuilder->find($entityClass); |
48 | 48 | } |
49 | 49 | return $this->createQuery($value, $queryBuilder); |
@@ -33,6 +33,9 @@ |
||
33 | 33 | return $this; |
34 | 34 | } |
35 | 35 | |
36 | + /** |
|
37 | + * @param string $name |
|
38 | + */ |
|
36 | 39 | public function setNamespace($name) |
37 | 40 | { |
38 | 41 | $this->namespace = $name; |
@@ -89,11 +89,11 @@ discard block |
||
89 | 89 | $config = $this->serviceManager->get('Config'); |
90 | 90 | $appConfig = $this->serviceManager->get('ApplicationConfig'); |
91 | 91 | foreach ($appConfig['modules'] as $module) { |
92 | - $this->config[$module] = array_key_exists($module, $config)?$config[$module]:array(); |
|
92 | + $this->config[$module] = array_key_exists($module, $config) ? $config[$module] : array(); |
|
93 | 93 | } |
94 | 94 | } |
95 | 95 | if (isset($namespace)) { |
96 | - return array_key_exists($namespace, $this->config)?$this->config[$namespace]: array(); |
|
96 | + return array_key_exists($namespace, $this->config) ? $this->config[$namespace] : array(); |
|
97 | 97 | } |
98 | 98 | return $this->config; |
99 | 99 | } |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | } |
107 | 107 | if (!empty($this->map[$key])) { |
108 | 108 | $module = $this->getNamespace(); |
109 | - return isset($this->map[$key][$module])?$this->map[$key][$module]:array(); |
|
109 | + return isset($this->map[$key][$module]) ? $this->map[$key][$module] : array(); |
|
110 | 110 | } |
111 | 111 | return array(); |
112 | 112 | } |
@@ -79,6 +79,9 @@ |
||
79 | 79 | return $this->dependencyCheck($event); |
80 | 80 | } |
81 | 81 | |
82 | + /** |
|
83 | + * @param \Core\Entity\EntityInterface $entity |
|
84 | + */ |
|
82 | 85 | private function checkEntityClasses($entity) |
83 | 86 | { |
84 | 87 | if (empty($this->entityClasses)) { |
@@ -131,6 +131,9 @@ |
||
131 | 131 | return $this->description; |
132 | 132 | } |
133 | 133 | |
134 | + /** |
|
135 | + * @param string $mode |
|
136 | + */ |
|
134 | 137 | public function isMode($mode) |
135 | 138 | { |
136 | 139 | return $this->mode == $mode; |
@@ -88,7 +88,7 @@ |
||
88 | 88 | |
89 | 89 | /** |
90 | 90 | * @throws \RuntimeException |
91 | - * @return mixed |
|
91 | + * @return ZendClient |
|
92 | 92 | */ |
93 | 93 | protected function authetificate() |
94 | 94 | { |
@@ -92,8 +92,8 @@ |
||
92 | 92 | */ |
93 | 93 | protected function authetificate() |
94 | 94 | { |
95 | - $auth = array_key_exists('user', $this->config)?$this->config['user']:''; |
|
96 | - $pass = array_key_exists('pass', $this->config)?$this->config['pass']:''; |
|
95 | + $auth = array_key_exists('user', $this->config) ? $this->config['user'] : ''; |
|
96 | + $pass = array_key_exists('pass', $this->config) ? $this->config['pass'] : ''; |
|
97 | 97 | return $this->setAuth($auth, $pass); |
98 | 98 | } |
99 | 99 |
@@ -20,7 +20,7 @@ |
||
20 | 20 | * Set the View object |
21 | 21 | * |
22 | 22 | * @param Renderer $view |
23 | - * @return AbstractHelper |
|
23 | + * @return AbstractEventsHelper |
|
24 | 24 | */ |
25 | 25 | public function setView(Renderer $view) |
26 | 26 | { |