Skip to content

Commit

Permalink
Make Cipher::decryptStream public
Browse files Browse the repository at this point in the history
  • Loading branch information
JASchilz committed Aug 21, 2015
1 parent b417b82 commit df0c7d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Cipher.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function decrypt($encryptedMessage) {

}

protected function decryptStream($encryptedStream) {
public function decryptStream($encryptedStream) {
if (is_null($encryptedStream)) {
return null;
} else {
Expand Down Expand Up @@ -83,4 +83,4 @@ public static function getInstance() {



}
}

0 comments on commit df0c7d8

Please sign in to comment.