walkor пре 4 година
родитељ
комит
839c5802bf
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      Protocols/Http/Request.php

+ 2 - 2
Protocols/Http/Request.php

@@ -393,8 +393,8 @@ class Request
         $this->_data['headers'] = array();
         $raw_head = $this->rawHead();
         
-        $endFirsLinePosition = \strpos($raw_head, "\r\n");
-        if ($endFirsLinePosition === false) {
+        $end_line_position = \strpos($raw_head, "\r\n");
+        if ($end_line_position === false) {
             return;
         }