@@ -40,7 +40,7 @@ class Status
4040 * This code is sent in response to an Upgrade request header from the
4141 * client, and indicates the protocol the server is switching to.
4242 *
43- * @see Header ::UPGRADE
43+ * @see HeaderTrait ::UPGRADE
4444 * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101
4545 */
4646 public const int SWITCHING_PROTOCOLS = 101 ;
@@ -60,7 +60,7 @@ class Status
6060 * letting the user agent start preloading resources while the server
6161 * prepares a response.
6262 *
63- * @see Header ::LINK
63+ * @see HeaderTrait ::LINK
6464 * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103
6565 */
6666 public const int EARLY_HINTS = 103 ;
@@ -146,7 +146,7 @@ class Status
146146 * to request only part of a resource.
147147 *
148148 * @see RequestHeader::RANGE
149- * @see Header ::CONTENT_RANGE
149+ * @see HeaderTrait ::CONTENT_RANGE
150150 * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/206
151151 */
152152 public const int PARTIAL_CONTENT = 206 ;
@@ -405,7 +405,7 @@ class Status
405405 * Server rejected the request because the Content-Length header field is
406406 * not defined and the server requires it.
407407 *
408- * @see Header ::CONTENT_LENGTH
408+ * @see HeaderTrait ::CONTENT_LENGTH
409409 * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/411
410410 */
411411 public const int LENGTH_REQUIRED = 411 ;
@@ -528,7 +528,7 @@ class Status
528528 * protocol. The server sends an `Upgrade` header in a 426 response to
529529 * indicate the required protocol(s).
530530 *
531- * @see Header ::UPGRADE
531+ * @see HeaderTrait ::UPGRADE
532532 * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/426
533533 */
534534 public const int UPGRADE_REQUIRED = 426 ;
0 commit comments