Merge pull request #7370 from nextcloud/fix-php-doc

Fix PHP doc for API docs
This commit is contained in:
Roeland Jago Douma 2017-12-03 20:18:01 +01:00 committed by GitHub
commit ca8d149e29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ namespace OC\Hooks;
trait EmitterTrait {
/**
* @var (callable[])[] $listeners
* @var callable[][] $listeners
*/
protected $listeners = array();

View file

@ -29,7 +29,7 @@ use Throwable;
class Registry implements IRegistry {
/** @var array<IReporter> */
/** @var IReporter[] */
private $reporters = [];
/**