소스 검색

removed redundant return

Mark Magyar 2 년 전
부모
커밋
627658c5b0
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      src/Protocols/Http.php

+ 0 - 1
src/Protocols/Http.php

@@ -110,7 +110,6 @@ class Http
             // Judge whether the package length exceeds the limit.
             if (strlen($buffer) >= 16384) {
                 $connection->close("HTTP/1.1 413 Payload Too Large\r\n\r\n", true);
-                return 0;
             }
             return 0;
         }