소스 검색

Update Request.php

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;
         }