Prechádzať zdrojové kódy

Delete redundant comments

Joanhey 1 rok pred
rodič
commit
74525be38b
1 zmenil súbory, kde vykonal 0 pridanie a 8 odobranie
  1. 0 8
      src/Protocols/Http/Chunk.php

+ 0 - 8
src/Protocols/Http/Chunk.php

@@ -28,16 +28,8 @@ use function strlen;
 class Chunk implements Stringable
 {
 
-    /**
-     * Chunk constructor.
-     *
-     */
     public function __construct(protected string $buffer) {}
 
-    /**
-     * __toString
-     *
-     */
     public function __toString(): string
     {
         return dechex(strlen($this->buffer)) . "\r\n$this->buffer\r\n";