@@ -46,7 +46,6 @@ |
||
| 46 | 46 | /** |
| 47 | 47 | * Add column siteid to fe_users table. |
| 48 | 48 | * |
| 49 | - * @param array $stmts Associative array of tables names and lists of SQL statements to execute. |
|
| 50 | 49 | */ |
| 51 | 50 | public function migrate() |
| 52 | 51 | { |
@@ -29,8 +29,8 @@ |
||
| 29 | 29 | /** |
| 30 | 30 | * Initializes the cache controller. |
| 31 | 31 | * |
| 32 | - * @param \\Aimeos\MShop\Context\Item\Iface $context MShop context object |
|
| 33 | - * @param \TYPO3\Flow\Cache\Frontend\StringFrontend $cache Flow cache object |
|
| 32 | + * @param \Aimeos\MShop\Context\Item\Iface $context MShop context object |
|
| 33 | + * @param \TYPO3\CMS\Core\Cache\Frontend\FrontendInterface $cache Flow cache object |
|
| 34 | 34 | */ |
| 35 | 35 | public function __construct( \Aimeos\MShop\Context\Item\Iface $context, \TYPO3\CMS\Core\Cache\Frontend\FrontendInterface $cache ) |
| 36 | 36 | { |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | /** |
| 74 | 74 | * Initializes the customer group manager object |
| 75 | 75 | * |
| 76 | - * @param \Aimeos\MShop\Context\Iface $context Context object with required objects |
|
| 76 | + * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects |
|
| 77 | 77 | */ |
| 78 | 78 | public function __construct( \Aimeos\MShop\Context\Item\Iface $context ) |
| 79 | 79 | { |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | /** |
| 104 | 104 | * Removes old entries from the database |
| 105 | 105 | * |
| 106 | - * @param iterable $siteids List of IDs for sites whose entries should be deleted |
|
| 106 | + * @param integer[] $siteids List of IDs for sites whose entries should be deleted |
|
| 107 | 107 | * @return \Aimeos\MShop\Common\Manager\Iface Same object for fluent interface |
| 108 | 108 | */ |
| 109 | 109 | public function clear( iterable $siteids ) : \Aimeos\MShop\Common\Manager\Iface |
@@ -728,7 +728,7 @@ |
||
| 728 | 728 | * |
| 729 | 729 | * @param string $manager Name of the sub manager type in lower case |
| 730 | 730 | * @param string|null $name Name of the implementation, will be from configuration (or Default) if null |
| 731 | - * @return mixed Manager for different extensions, e.g stock, tags, locations, etc. |
|
| 731 | + * @return \Aimeos\MShop\Common\Manager\Iface Manager for different extensions, e.g stock, tags, locations, etc. |
|
| 732 | 732 | */ |
| 733 | 733 | public function getSubManager( string $manager, string $name = null ) : \Aimeos\MShop\Common\Manager\Iface |
| 734 | 734 | { |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | * |
| 94 | 94 | * @inheritDoc |
| 95 | 95 | * |
| 96 | - * @param iterable $keys List of key strings that identify the cache entries that should be removed |
|
| 96 | + * @param string[] $keys List of key strings that identify the cache entries that should be removed |
|
| 97 | 97 | * @return bool True if the items were successfully removed. False if there was an error. |
| 98 | 98 | * @throws \Psr\SimpleCache\InvalidArgumentException |
| 99 | 99 | */ |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | * |
| 113 | 113 | * @inheritDoc |
| 114 | 114 | * |
| 115 | - * @param iterable $tags List of tag strings that are associated to one or |
|
| 115 | + * @param string[] $tags List of tag strings that are associated to one or |
|
| 116 | 116 | * more cache entries that should be removed |
| 117 | 117 | * @return bool True if the items were successfully removed. False if there was an error. |
| 118 | 118 | * @throws \Psr\SimpleCache\InvalidArgumentException |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | * @inheritDoc |
| 134 | 134 | * |
| 135 | 135 | * @param string $key Path to the requested value like product/id/123 |
| 136 | - * @param mixed $default Value returned if requested key isn't found |
|
| 136 | + * @param string $default Value returned if requested key isn't found |
|
| 137 | 137 | * @return mixed Value associated to the requested key. If no value for the |
| 138 | 138 | * key is found in the cache, the given default value is returned |
| 139 | 139 | * @throws \Psr\SimpleCache\InvalidArgumentException |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | * |
| 154 | 154 | * @inheritDoc |
| 155 | 155 | * |
| 156 | - * @param iterable $keys List of key strings for the requested cache entries |
|
| 156 | + * @param string[] $keys List of key strings for the requested cache entries |
|
| 157 | 157 | * @param mixed $default Default value to return for keys that do not exist |
| 158 | 158 | * @return iterable A list of key => value pairs. Cache keys that do not exist or are stale will have $default as value. |
| 159 | 159 | * @throws \Psr\SimpleCache\InvalidArgumentException |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | * @inheritDoc |
| 231 | 231 | * |
| 232 | 232 | * @param iterable $pairs Associative list of key/value pairs. Both must be a string |
| 233 | - * @param \DateInterval|int|string|null $expires Date interval object, |
|
| 233 | + * @param string|null $expires Date interval object, |
|
| 234 | 234 | * date/time string in "YYYY-MM-DD HH:mm:ss" format or as integer TTL value |
| 235 | 235 | * when the cache entry will expiry |
| 236 | 236 | * @param iterable $tags List of tags that should be associated to the cache entries |
@@ -321,7 +321,7 @@ |
||
| 321 | 321 | /** |
| 322 | 322 | * Returns the internal TYPO3 mail message object. |
| 323 | 323 | * |
| 324 | - * @return TYPO3\CMS\Core\Mail\MailMessage TYPO3 mail message object |
|
| 324 | + * @return \TYPO3\CMS\Core\Mail\MailMessage TYPO3 mail message object |
|
| 325 | 325 | */ |
| 326 | 326 | public function getObject() : \TYPO3\CMS\Core\Mail\MailMessage |
| 327 | 327 | { |
@@ -86,7 +86,7 @@ |
||
| 86 | 86 | /** |
| 87 | 87 | * Remove the list of keys from the session. |
| 88 | 88 | * |
| 89 | - * @param array $name Keys to remove from the session |
|
| 89 | + * @param array $names Keys to remove from the session |
|
| 90 | 90 | * @return \Aimeos\MW\Session\Iface Session instance for method chaining |
| 91 | 91 | */ |
| 92 | 92 | public function remove( array $names ) : Iface |
@@ -73,7 +73,6 @@ |
||
| 73 | 73 | /** |
| 74 | 74 | * Creates a PSR-7 compatible request |
| 75 | 75 | * |
| 76 | - * @param \TYPO3\Flow\Http\Request $nativeRequest Flow request object |
|
| 77 | 76 | * @param array $files List of uploaded files like in $_FILES |
| 78 | 77 | * @param array $query List of uploaded files like in $_GET |
| 79 | 78 | * @param array $post List of uploaded files like in $_POST |
@@ -103,7 +103,7 @@ |
||
| 103 | 103 | * @param array $config Associative list of key/value pairs |
| 104 | 104 | * @param string $key Key of the value to retrieve |
| 105 | 105 | * @param mixed $default Default value if value for key isn't found |
| 106 | - * @return mixed Configuration value for the given key or default value |
|
| 106 | + * @return string Configuration value for the given key or default value |
|
| 107 | 107 | */ |
| 108 | 108 | protected function getValue( array $config, string $key, $default = null ) |
| 109 | 109 | { |