Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Undefined property: CollectiveAnnotationsRoutingAnnotationsResourcePath::$no_prefix

//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(...)
 */
 
PREVIOUS NEXT
Tagged: #Undefined
ADD COMMENT
Topic
Name
8+3 =