thecodingmachine / mouf

The Mouf PHP framework: an open-source PHP framework providing an easy way to download, install, use and reuse components, with a graphical user interface.
MIT License
54 stars 28 forks source link

Detection of Class in constructor fails. #27

Closed moufmouf closed 11 years ago

moufmouf commented 11 years ago

Here is a simple constructor:

public function __construct(SearchService $searchService) {
    $this->searchService = $searchService;
}

We would expect Mouf to find that the $searchService property is a SearchService class, but it proposes string instead.