Skip to content
This repository has been archived by the owner on Sep 20, 2021. It is now read-only.

Commit

Permalink
Change the visibility of getStream to public.
Browse files Browse the repository at this point in the history
Because sometimes, we would like to access to the PHP resource. This was
protected for several “security” reasons but this is often blocking to
not being able to access the PHP resource directly.
  • Loading branch information
Hywan committed Oct 22, 2015
1 parent cbd0f47 commit 011ab91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Stream.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ public function getStreamName()
*
* @return resource
*/
protected function getStream()
public function getStream()
{
if (empty($this->_bucket)) {
return null;
Expand Down

0 comments on commit 011ab91

Please sign in to comment.