laracasts / TestDummy

Easy factories for PHP integration testing.
https://laracasts.com/lessons/whats-new-in-testdummy
MIT License
456 stars 80 forks source link

factories.php file makes PHPStorm Unhappy #89

Closed mikeerickson closed 9 years ago

mikeerickson commented 9 years ago

Anybody have a fix for this issue of PHPStorm thinking there is an error in the factories file due to the $factory variable being undefined (see screenshots below)

http://d.pr/i/SXIv

and here

http://d.pr/i/FWrX

h-collector commented 9 years ago

Put before first usage

/* @var $factory Closure */
mikeerickson commented 9 years ago

@h-collector Excellent, that was an easy fix! Thanks mate :-)