//When tring to run "php artisan route:scan"
//Error: Undefined property: CollectiveAnnotationsRoutingAnnotationsResourcePath::$no_prefix
Check your route annotations. The annotations must follow a order,
the annotations @Controller must be in first then the annotation @Resource.
//WRONG Example
/**
* @Resource(...)
* @Controller(...)
*/
//RIGHT Example
/**
* @Controller(...)
* @Resource(...)
*/