@@ -34,6 +34,9 @@ |
||
34 | 34 | { |
35 | 35 | } |
36 | 36 | |
37 | + /** |
|
38 | + * @param string $directory |
|
39 | + */ |
|
37 | 40 | public static function load($directory) |
38 | 41 | { |
39 | 42 | $directory = rtrim($directory, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; |
@@ -36,7 +36,7 @@ |
||
36 | 36 | |
37 | 37 | public static function load($directory) |
38 | 38 | { |
39 | - $directory = rtrim($directory, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; |
|
39 | + $directory = rtrim($directory, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR; |
|
40 | 40 | $env = getenv('APPLICATION_ENV') ?: 'production'; |
41 | 41 | $pattern = sprintf('%s{,*.}{config,%s}.php', $directory, $env); |
42 | 42 | $config = array(); |
@@ -24,7 +24,7 @@ |
||
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @param ServiceLocatorInterface $serviceLocator |
27 | - * @return mixed|Paginator |
|
27 | + * @return Paginator |
|
28 | 28 | */ |
29 | 29 | public function createService(ServiceLocatorInterface $serviceLocator) |
30 | 30 | { |
@@ -50,7 +50,7 @@ |
||
50 | 50 | $repository = $repositories->get($this->getRepository()); |
51 | 51 | $queryBuilder = $repository->createQueryBuilder(); |
52 | 52 | $filter = $serviceLocator->getServiceLocator()->get('filterManager')->get($this->getFilter()); |
53 | - $adapter = new \Core\Paginator\Adapter\DoctrineMongoLateCursor($queryBuilder, $filter, $this->options); |
|
53 | + $adapter = new \Core\Paginator\Adapter\DoctrineMongoLateCursor($queryBuilder, $filter, $this->options); |
|
54 | 54 | $service = new Paginator($adapter); |
55 | 55 | |
56 | 56 | $this->setCreationOptions([]); |
@@ -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 | } |
@@ -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 |
@@ -160,7 +160,7 @@ |
||
160 | 160 | /** |
161 | 161 | * Starts content capturing. |
162 | 162 | * |
163 | - * @param string|array $type |
|
163 | + * @param string|null $type |
|
164 | 164 | * @param array $options see {@łink render()} for information. |
165 | 165 | * |
166 | 166 | * @return self |
@@ -52,7 +52,6 @@ discard block |
||
52 | 52 | * @method warning() |
53 | 53 | * @method success() |
54 | 54 | * @method danger() |
55 | - |
|
56 | 55 | * |
57 | 56 | *@author Mathias Gelhausen <[email protected]> |
58 | 57 | */ |
@@ -149,7 +148,7 @@ discard block |
||
149 | 148 | ) { |
150 | 149 | $class .= ' alert-dismissable'; |
151 | 150 | $content = '<button type="button" class="close" data-dismiss="alert">×</button>' |
152 | - . '<span class="notification-content">' . $content . '</span>'; |
|
151 | + . '<span class="notification-content">' . $content . '</span>'; |
|
153 | 152 | } |
154 | 153 | |
155 | 154 | $target = array_key_exists('target', $options)?' target="' . $options['target'] . '"':''; |
@@ -142,18 +142,18 @@ discard block |
||
142 | 142 | return $this->start($type, $options); |
143 | 143 | } |
144 | 144 | |
145 | - $id = isset($options['id']) ? ' id="' . $options['id'] . '"' : ''; |
|
146 | - $class = isset($options['class']) ? ' ' . $options['class'] : ''; |
|
145 | + $id = isset($options['id']) ? ' id="'.$options['id'].'"' : ''; |
|
146 | + $class = isset($options['class']) ? ' '.$options['class'] : ''; |
|
147 | 147 | if ((isset($options['dismissable']) && $options['dismissable']) |
148 | 148 | || !isset($options['dismissable']) |
149 | 149 | ) { |
150 | 150 | $class .= ' alert-dismissable'; |
151 | 151 | $content = '<button type="button" class="close" data-dismiss="alert">×</button>' |
152 | - . '<span class="notification-content">' . $content . '</span>'; |
|
152 | + . '<span class="notification-content">'.$content.'</span>'; |
|
153 | 153 | } |
154 | 154 | |
155 | - $target = array_key_exists('target', $options)?' target="' . $options['target'] . '"':''; |
|
156 | - $markup = '<div ' . $id . ' class="alert alert-' . $type . $class . '" ' . $target . '>' . $content . '</div>' . PHP_EOL; |
|
155 | + $target = array_key_exists('target', $options) ? ' target="'.$options['target'].'"' : ''; |
|
156 | + $markup = '<div '.$id.' class="alert alert-'.$type.$class.'" '.$target.'>'.$content.'</div>'.PHP_EOL; |
|
157 | 157 | return $markup; |
158 | 158 | } |
159 | 159 | |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | public function __call($method, $args) |
192 | 192 | { |
193 | 193 | if (!in_array($method, array(self::TYPE_INFO, self::TYPE_DANGER, self::TYPE_SUCCESS, self::TYPE_WARNING))) { |
194 | - throw new \BadMethodCallException('Unknown method: ' . $method); |
|
194 | + throw new \BadMethodCallException('Unknown method: '.$method); |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | // We know that $method is one of the valid types, so we can safely use it as "type"-parameter for the |
@@ -53,7 +53,6 @@ |
||
53 | 53 | * |
54 | 54 | * @see \Zend\I18n\View\Helper\DateFormat::__invoke() |
55 | 55 | * |
56 | - * @param \DateTime $data|string |
|
57 | 56 | * @param string $dateType |
58 | 57 | * @return string |
59 | 58 | */ |
@@ -40,7 +40,7 @@ |
||
40 | 40 | { |
41 | 41 | const FULL = 'full'; |
42 | 42 | const LONG = 'long'; |
43 | - const MEDIUM= 'medium'; |
|
43 | + const MEDIUM = 'medium'; |
|
44 | 44 | const SHORT = 'short'; |
45 | 45 | const NONE = 'none'; |
46 | 46 |
@@ -171,7 +171,7 @@ |
||
171 | 171 | * Return all event parameters or a single event parameter. |
172 | 172 | * |
173 | 173 | * @param string $param Parameter name to retrieve, or null to get all. |
174 | - * @param mixed $efault Default value to use when the parameter is missing. |
|
174 | + * @param mixed $default Default value to use when the parameter is missing. |
|
175 | 175 | * @return mixed |
176 | 176 | * @throws RuntimeException |
177 | 177 | */ |