From 335a7d93ff086b4f86304449c2c1b5cb2864aa7b Mon Sep 17 00:00:00 2001 From: Lukas Pawlik Date: Wed, 11 May 2016 12:43:35 +0200 Subject: [PATCH] Minor fix. Made method declaration compatible with its parent --- includes/class-windows-azure-list-containers-response.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/includes/class-windows-azure-list-containers-response.php b/includes/class-windows-azure-list-containers-response.php index 8797581c..58098bb1 100644 --- a/includes/class-windows-azure-list-containers-response.php +++ b/includes/class-windows-azure-list-containers-response.php @@ -79,10 +79,11 @@ public function __construct( array $rest_response, Windows_Azure_Rest_Api_Client * @param string $prefix Search prefix. * @param int $max_results Max API listing results. * @param string $next_marker Offset marker. + * @param string $path Optional path. Unused. * - * @return WP_Error|Windows_Azure_List_Containers_Response Containers list iterator class or WP_Error on failure.ł + * @return WP_Error|Windows_Azure_List_Containers_Response Containers list iterator class or WP_Error on failure. */ - protected function _list_items( $prefix, $max_results, $next_marker ) { + protected function _list_items( $prefix, $max_results, $next_marker, $path ) { return $this->_rest_client->list_containers( $prefix, $max_results, $next_marker ); } }