Skip to content

Commit

Permalink
Remove deprecated key/value pair annotation syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Apr 10, 2020
1 parent e5f0d9f commit ffa5d94
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ I/O Collections change log

## ?.?.? / ????-??-??

## 8.0.2 / 2020-04-10

* Implemented RFC #335: Remove deprecated key/value pair annotation syntax
(@thekid)

## 8.0.1 / 2020-04-04

* Made compatible with XP 10 - @thekid
Expand Down
6 changes: 4 additions & 2 deletions src/main/php/io/collections/iterate/IterationFilter.class.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?php namespace io\collections\iterate;

use util\Filter;

/**
* Iteration filter
*
* @see xp://io.collections.iterate.FilteredIOCollectionIterator
*/
#[@generic(extends= ['io.collections.IOElement'])]
interface IterationFilter extends \util\Filter {
#[@generic(['extends' => ['io.collections.IOElement']])]
interface IterationFilter extends Filter {

}

0 comments on commit ffa5d94

Please sign in to comment.