Skip to content

Commit

Permalink
fix InvalidDocblock error
Browse files Browse the repository at this point in the history
  • Loading branch information
azjezz committed Dec 24, 2019
1 parent 0b5d64f commit 13128b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Psl/Collection/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
* Collection is the primary collection interface for mutable collections.
*
* Assuming you want the ability to clear out your collection, you would implement this (or a child of this)
* interface. Otherwise, you can implement MutableCollection only.
* interface. Otherwise, you can implement OutputCollection only.
* If your collection to be immutable, implement ConstCollection only instead.
*
* @psalm-template Tv
*
* @template-extends ConstCollection<Tv>
* @template-extends MutableCollection<Tv>
* @template-extends OutputCollection<Tv>
*/
interface Collection extends ConstCollection, OutputCollection
{
Expand Down

0 comments on commit 13128b5

Please sign in to comment.