X-Git-Url: http://git.cyclocoop.org/%28?a=blobdiff_plain;f=includes%2Flibs%2FMappedIterator.php;h=4a62e72909a15d24f7e7fd3cc5b3a48863da3517;hb=46b361d7431d71c86f8c34f5e43549426dd67fb7;hp=73ffb14747630dfd3202a8e285639160f504d3b6;hpb=96906168cac0e9a7748511b48c369cf22c8406d5;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/libs/MappedIterator.php b/includes/libs/MappedIterator.php index 73ffb14747..4a62e72909 100644 --- a/includes/libs/MappedIterator.php +++ b/includes/libs/MappedIterator.php @@ -18,7 +18,6 @@ * http://www.gnu.org/copyleft/gpl.html * * @file - * @author Aaron Schulz */ /** @@ -61,7 +60,7 @@ class MappedIterator extends FilterIterator { } parent::__construct( $baseIterator ); $this->vCallback = $vCallback; - $this->aCallback = isset( $options['accept'] ) ? $options['accept'] : null; + $this->aCallback = $options['accept'] ?? null; } public function next() {