Skip to content

Commit

Permalink
Merge pull request #3 from lukaspawlik/feature/WM-334
Browse files Browse the repository at this point in the history
Minor fix. Made method declaration compatible with its parent
  • Loading branch information
lukaspawlik committed May 11, 2016
2 parents 407fe21 + 335a7d9 commit bc666e9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions includes/class-windows-azure-list-containers-response.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
}
}

0 comments on commit bc666e9

Please sign in to comment.