openstackid-resources/app/Http/Controllers/apis/protected/summit/strategies/RetrieveAllPublishedSummitEventsStrategy.php
Sebastian Marcet 37c982c958 Fix on Null exception
fixed null exception on default parameter on get events

Change-Id: I543f97112b84e3774de7a1903a4ea34886e661a8
2016-03-08 09:03:20 -03:00

36 lines
1.1 KiB
PHP

<?php
/**
* Copyright 2015 OpenStack Foundation
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
namespace App\Http\Controllers;
use utils\Filter;
/**
* Class RetrieveAllPublishedSummitEventsStrategy
* @package App\Http\Controllers
*/
final class RetrieveAllPublishedSummitEventsStrategy extends RetrieveAllSummitEventsStrategy
{
/**
* @param $page
* @param $per_page
* @param Filter|null $filter
* @return array
*/
public function retrieveEventsFromSource($page, $per_page, Filter $filter = null)
{
return $this->event_repository->getAllPublishedByPage($page, $per_page, $filter);
}
}