Completed
Pull Request — master (#116)
by Sorin Valer
03:15
created
src/Encoder/Handlers/ReplyInterpreter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -230,7 +230,7 @@
 block discarded – undo
230 230
      * @param Frame      $current
231 231
      * @param Frame|null $previous
232 232
      *
233
-     * @return bool[]
233
+     * @return boolean[]
234 234
      */
235 235
     private function getIfTargets($rootType, Frame $current, Frame $previous = null)
236 236
     {
Please login to merge, or discard this patch.
src/Http/Headers/AcceptHeader.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,8 @@
 block discarded – undo
44 44
     /**
45 45
      * @inheritdoc
46 46
      *
47
-     * @return AcceptHeaderInterface
47
+     * @param string[] $header
48
+     * @return Header
48 49
      */
49 50
     public static function parse($header, $accept = self::HEADER_ACCEPT)
50 51
     {
Please login to merge, or discard this patch.
src/Schema/Container.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@
 block discarded – undo
195 195
     protected function getResourceType($resource)
196 196
     {
197 197
 
198
-        if(in_array(self::DOCTRINE_PROXY_CLASS_NAME, class_implements($resource))){
198
+        if(in_array(self::DOCTRINE_PROXY_CLASS_NAME, class_implements($resource))) {
199 199
             return get_parent_class($resource);
200 200
         }
201 201
 
Please login to merge, or discard this patch.