Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
MDL-60751 core_calendar: remove useless NULL_ALLOWED parameter
  • Loading branch information
lameze committed Nov 14, 2017
1 parent 0164f50 commit 7e781cf
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions calendar/externallib.php
Expand Up @@ -127,23 +127,19 @@ public static function get_calendar_events_parameters() {
'eventids' => new external_multiple_structure(
new external_value(PARAM_INT, 'event ids')
, 'List of event ids',
VALUE_DEFAULT, array(), NULL_ALLOWED
),
VALUE_DEFAULT, array()),
'courseids' => new external_multiple_structure(
new external_value(PARAM_INT, 'course ids')
, 'List of course ids for which events will be returned',
VALUE_DEFAULT, array(), NULL_ALLOWED
),
VALUE_DEFAULT, array()),
'groupids' => new external_multiple_structure(
new external_value(PARAM_INT, 'group ids')
, 'List of group ids for which events should be returned',
VALUE_DEFAULT, array(), NULL_ALLOWED
),
VALUE_DEFAULT, array()),
'categoryids' => new external_multiple_structure(
new external_value(PARAM_INT, 'Category ids'),
'List of category ids for which events will be returned',
VALUE_DEFAULT, array()
),
VALUE_DEFAULT, array()),
), 'Event details', VALUE_DEFAULT, array()),
'options' => new external_single_structure(
array(
Expand Down

0 comments on commit 7e781cf

Please sign in to comment.