Skip to content
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
@Cyrille37

Description

@Cyrille37

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions