Commit 858326c0 by Qiang Xue

Fixed test break.

parent 039ed688
......@@ -220,6 +220,11 @@ class Model extends Component implements IteratorAggregate, ArrayAccess
$scenarios[$scenario] = array_keys($attributes);
}
}
if (empty($scenarios[self::DEFAULT_SCENARIO])) {
// keep the default scenario so that models without any rules defined can work properly
$scenarios[self::DEFAULT_SCENARIO] = [];
}
return $scenarios;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment