We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FACT-Finder PHP Library version: 1.2.5+src
1.2.5+src
PHP version: PHP 7.0.25
PHP 7.0.25
Expected behavior: PhpStorm, doc-tag for \FACTFinder\Adapter\Suggest::getSuggestions() returns \FACTFinder\Data\SuggestQuery[].
\FACTFinder\Adapter\Suggest::getSuggestions()
\FACTFinder\Data\SuggestQuery[]
Actual behavior: PhpStorm, doc-tag for \FACTFinder\Adapter\Suggest::getSuggestions() returns \FACTFinder\Adapter\FACTFinder\Data\SuggestQuery[].
\FACTFinder\Adapter\FACTFinder\Data\SuggestQuery[]
Expected \FACTFinder\Data\SuggestQuery[], got \FACTFinder\Adapter\FACTFinder\Data\SuggestQuery[]
use FACTFinder\Data\SuggestQuery; class MyClass { /** * @param SuggestQuery[] $suggestions */ private function myFnc1($suggestions) { // ... } private function myFnc2() { $suggest = new Suggest(); $this->myFnc1($suggest->getSuggestions()); } }
In general are a lot of the doc-tags not right:
@param
@return
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FACT-Finder PHP Library version:
1.2.5+src
PHP version:
PHP 7.0.25
Expected behavior:
PhpStorm, doc-tag for
\FACTFinder\Adapter\Suggest::getSuggestions()
returns\FACTFinder\Data\SuggestQuery[]
.Actual behavior:
PhpStorm, doc-tag for
\FACTFinder\Adapter\Suggest::getSuggestions()
returns\FACTFinder\Adapter\FACTFinder\Data\SuggestQuery[]
.In general are a lot of the doc-tags not right:
@param
and@return
but sometimes also too much from older versionsThe text was updated successfully, but these errors were encountered: