zendframework / ZendService_Amazon

BSD 3-Clause "New" or "Revised" License
29 stars 37 forks source link

added missing use statement #48

Closed matwright closed 7 years ago

matwright commented 9 years ago

The constructors accepts an Zend\Http\Client object as defined in the 3rd argument of its signature:

public function __construct($accessKey = null, $secretKey = null, HttpClient $httpClient = null)

However the typehint is trying to match in the current namespace rather than the correct Zend\Http\Client namespace.

Added use statement to fix.