Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix type annotations #59

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Fix type annotations #59

wants to merge 1 commit into from

Conversation

jtojnar
Copy link

@jtojnar jtojnar commented Feb 11, 2020

When validating my app using Psalm, I get the following error:

ERROR: PossiblyInvalidArgument - app/forms/TeamFormFactory.php:63:26 - Argument 1 of iterator_count expects Traversable, possibly different type Iterator|array<array-key, Nette\Forms\Container> provided
            return iterator_count($replicator->getContainers()) <= $maxMembers;

Since Nette\ComponentModel\Container::getComponents only returns Iterator, let’s fix the annotations using generics.

When validating my app using Psalm, I get the following error:

    ERROR: PossiblyInvalidArgument - app/forms/TeamFormFactory.php:63:26 - Argument 1 of iterator_count expects Traversable, possibly different type Iterator|array<array-key, Nette\Forms\Container> provided
                return iterator_count($replicator->getContainers()) <= $maxMembers;

Since Nette\ComponentModel\Container::getComponents only returns Iterator, let’s fix the annotations using generics.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant