minor #25765 Add missing @ in phpdoc return statement (grongor)

This PR was submitted for the master branch but it was merged into the 3.3 branch instead (closes #25765).

Discussion
----------

Add missing @ in phpdoc return statement

| Q             | A
| ------------- | ---
| Branch?       | 3.1
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| License       | MIT

Commits
-------

efb8fa1 Add missing @ in phpdoc return statement
This commit is contained in:
Nicolas Grekas 2018-01-11 11:30:35 +01:00
commit c2681e7465
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ interface AdapterInterface extends CacheItemPoolInterface
/**
* {@inheritdoc}
*
* return \Traversable|CacheItem[]
* @return \Traversable|CacheItem[]
*/
public function getItems(array $keys = array());
}