This repository was archived by the owner on Jul 16, 2023. It is now read-only.
This repository was archived by the owner on Jul 16, 2023. It is now read-only.
initialization of the static variable Ardent::$rules #292
Open
Description
Hi,
not a bug but a needed feature.
I would like to define some Ardent::$rules
with concatenation of constants. But Php5.6 does not want concatenation in declaration of static variables.
class Abc extends Ardent
{
const NAME_LENGTH_MAX = 40 ;
public static $rules = array (
// Here, wants to replace 40 by Abc::NAME_LENGTH_MAX
'name' => ['required','between:3,40', 'regex:/^[[:word:] \-]+$/u'],
// Syntax error :
'name' => ['required','between:3,'.Abc::NAME_LENGTH_MAX, 'regex:/^[[:word:] \-]+$/u'],
);
Is there another way,place where we can initialize Ardent::$rules
values ?
Cheers
Metadata
Metadata
Assignees
Labels
No labels