Ver Fonte

Delete redundant comments

Joanhey há 1 ano atrás
pai
commit
74525be38b
1 ficheiros alterados com 0 adições e 8 exclusões
  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";