Skip to content

Commit

Permalink
Inherit annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
greg0ire committed Oct 3, 2023
1 parent 9a86474 commit 039fae4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/AbstractLazyCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ public function findFirst(Closure $p): mixed
return $this->collection->findFirst($p);
}

/**

Check failure on line 180 in src/AbstractLazyCollection.php

View workflow job for this annotation

GitHub Actions / Coding Standards / Coding Standards (8.1)

Useless documentation comment with @inheritdoc.
* {@inheritDoc}
*/
public function filter(Closure $p): Collection
{
$this->initialize();
Expand All @@ -191,6 +194,9 @@ public function forAll(Closure $p): bool
return $this->collection->forAll($p);
}

/**

Check failure on line 197 in src/AbstractLazyCollection.php

View workflow job for this annotation

GitHub Actions / Coding Standards / Coding Standards (8.1)

Useless documentation comment with @inheritdoc.
* {@inheritDoc}
*/
public function map(Closure $func): Collection
{
$this->initialize();
Expand Down

0 comments on commit 039fae4

Please sign in to comment.