@@ -53,8 +53,7 @@ |
||
53 | 53 | } |
54 | 54 | |
55 | 55 | $this->logger->log( $message, $this->translatePriority( $priority ) ); |
56 | - } |
|
57 | - catch( \Exception $e ) { |
|
56 | + } catch( \Exception $e ) { |
|
58 | 57 | throw new \Aimeos\MW\Logger\Exception( $e->getMessage(), $e->getCode(), $e ); |
59 | 58 | } |
60 | 59 | } |
@@ -31,7 +31,7 @@ |
||
31 | 31 | /** |
32 | 32 | * Initializes the request view helper. |
33 | 33 | * |
34 | - * @param \\Aimeos\MW\View\Iface $view View instance with registered view helpers |
|
34 | + * @param \Aimeos\MW\View\Iface $view View instance with registered view helpers |
|
35 | 35 | * @param \TYPO3\Flow\Http\Request $request Flow request object |
36 | 36 | * @param array $files List of uploaded files like in $_FILES |
37 | 37 | * @param array $query List of uploaded files like in $_GET |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * |
57 | 57 | * @inheritDoc |
58 | 58 | * |
59 | - * @param \Traversable|array $keys List of key strings that identify the cache entries |
|
59 | + * @param string[] $keys List of key strings that identify the cache entries |
|
60 | 60 | * that should be removed |
61 | 61 | */ |
62 | 62 | public function deleteMultiple( $keys ) |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | * |
123 | 123 | * @inheritDoc |
124 | 124 | * |
125 | - * @param \Traversable|array $keys List of key strings for the requested cache entries |
|
125 | + * @param string[] $keys List of key strings for the requested cache entries |
|
126 | 126 | * @param mixed $default Default value to return for keys that do not exist |
127 | 127 | * @return array Associative list of key/value pairs for the requested cache |
128 | 128 | * entries. If a cache entry doesn't exist, neither its key nor a value |