/src/base/Module.php:
...
public $rememberFor = 3600 * 24;
...
Fired error "syntax error, unexpected '*', expecting ',' or ';'"
Because you need to read manual correctly:
This declaration may include an initialization, but this initialization must be a constant value--that is, it must be able to be evaluated at compile time and must not depend on run-time information in order to be evaluated.
Fired error "syntax error, unexpected '*', expecting ',' or ';'" Because you need to read manual correctly:
This declaration may include an initialization, but this initialization must be a constant value--that is, it must be able to be evaluated at compile time and must not depend on run-time information in order to be evaluated.
7