Browse Source

Fix PHPCS errors.

Mark Story 9 years ago
parent
commit
ed0579ffee
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/Http/CallbackStream.php

+ 3 - 0
src/Http/CallbackStream.php

@@ -33,6 +33,8 @@ class CallbackStream extends BaseCallbackStream
 {
     /**
      * {@inheritdoc}
+     *
+     * @return string
      */
     public function getContents()
     {
@@ -41,6 +43,7 @@ class CallbackStream extends BaseCallbackStream
         if (!is_string($result)) {
             return '';
         }
+
         return $result;
     }
 }