LazyRecord\BaseModel::beforeCreate PHP Method

beforeCreate() public method

By overriding this method, you can modify the arguments that is passed to the query builder. Remember to return the arguments back.
public beforeCreate ( array $args ) : array
$args array Arguments
return array $args Arguments
    public function beforeCreate($args)
    {
        return $args;
    }