ice / framework

Source code of Ice framework
https://www.iceframework.org
BSD 3-Clause "New" or "Revised" License
341 stars 45 forks source link

Model, default rules not working #270

Closed mruz closed 4 years ago

mruz commented 4 years ago
Test extends Model
{
    // Doesn't work
    protected $rules = [
        'key' => 'value'
    ];

    // Temp fix
    public function onConstruct()
    {
        $this->rules = [
            'key' => 'value'
        ];
    }
};