Config: fixed incorrect fluent @return annotations

This commit is contained in:
Dylan K. Taylor 2021-08-20 14:44:59 +01:00
parent ab05bc7379
commit 63e86fe806
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -258,7 +258,7 @@ class Config{
/** /**
* Sets the options for the JSON encoding when saving * Sets the options for the JSON encoding when saving
* *
* @return Config $this * @return $this
* @throws \RuntimeException if the Config is not in JSON * @throws \RuntimeException if the Config is not in JSON
* @see json_encode * @see json_encode
*/ */
@ -275,7 +275,7 @@ class Config{
/** /**
* Enables the given option in addition to the currently set JSON options * Enables the given option in addition to the currently set JSON options
* *
* @return Config $this * @return $this
* @throws \RuntimeException if the Config is not in JSON * @throws \RuntimeException if the Config is not in JSON
* @see json_encode * @see json_encode
*/ */
@ -292,7 +292,7 @@ class Config{
/** /**
* Disables the given option for the JSON encoding when saving * Disables the given option for the JSON encoding when saving
* *
* @return Config $this * @return $this
* @throws \RuntimeException if the Config is not in JSON * @throws \RuntimeException if the Config is not in JSON
* @see json_encode * @see json_encode
*/ */