diff --git a/libraries/src/Object/CMSObject.php b/libraries/src/Object/CMSObject.php index b94224ab4a009..d94bfd7db6a02 100644 --- a/libraries/src/Object/CMSObject.php +++ b/libraries/src/Object/CMSObject.php @@ -21,7 +21,7 @@ * * @since 1.7.0 * - * @deprecated 4.3 will be removed in 6.0 + * @deprecated 4.0 will be removed in 7.0 * Use \stdClass or \Joomla\Registry\Registry instead. * Example: new \Joomla\Registry\Registry(); */ @@ -52,7 +52,7 @@ public function __construct($properties = null) * * @since 1.7.0 * - * @deprecated 4.3 will be removed in 6.0 + * @deprecated 3.1.4 will be removed in 7.0 * Classes should provide their own __toString() implementation. */ public function __toString() diff --git a/libraries/src/Object/LegacyErrorHandlingTrait.php b/libraries/src/Object/LegacyErrorHandlingTrait.php index bbbcb54ffd9ef..3216c92ae8683 100644 --- a/libraries/src/Object/LegacyErrorHandlingTrait.php +++ b/libraries/src/Object/LegacyErrorHandlingTrait.php @@ -19,7 +19,7 @@ * * @since 4.3.0 * - * @deprecated 4.3 will be removed in 6.0 + * @deprecated 4.3 will be removed in 7.0 * Will be removed without replacement * Throw an Exception instead of setError */ @@ -46,7 +46,7 @@ trait LegacyErrorHandlingTrait * * @since 1.7.0 * - * @deprecated 3.1.4 will be removed in 6.0 + * @deprecated 3.1.4 will be removed in 7.0 * Will be removed without replacement * Catch thrown Exceptions instead of getError */ @@ -78,7 +78,7 @@ public function getError($i = null, $toString = true) * * @since 1.7.0 * - * @deprecated 3.1.4 will be removed in 6.0 + * @deprecated 3.1.4 will be removed in 7.0 * Will be removed without replacement * Catch thrown Exceptions instead of getErrors */ @@ -96,7 +96,7 @@ public function getErrors() * * @since 1.7.0 * - * @deprecated 3.1.4 will be removed in 6.0 + * @deprecated 3.1.4 will be removed in 7.0 * Will be removed without replacement * Throw an Exception instead of using setError */ diff --git a/libraries/src/Object/LegacyPropertyManagementTrait.php b/libraries/src/Object/LegacyPropertyManagementTrait.php index f624b2f218066..d399c2c935165 100644 --- a/libraries/src/Object/LegacyPropertyManagementTrait.php +++ b/libraries/src/Object/LegacyPropertyManagementTrait.php @@ -19,7 +19,7 @@ * * @since 4.3.0 * - * @deprecated 4.3.0 will be removed in 6.0 + * @deprecated 4.3.0 will be removed in 7.0 * Will be removed without replacement * Create proper setter functions for the individual properties or use a \Joomla\Registry\Registry */ @@ -35,7 +35,7 @@ trait LegacyPropertyManagementTrait * * @since 1.7.0 * - * @deprecated 4.3.0 will be removed in 6.0 + * @deprecated 4.3.0 will be removed in 7.0 * Defining dynamic properties should not be used anymore */ public function def($property, $default = null) @@ -57,7 +57,7 @@ public function def($property, $default = null) * * @see CMSObject::getProperties() * - * @deprecated 4.3.0 will be removed in 6.0 + * @deprecated 4.3.0 will be removed in 7.0 * Create a proper getter function for the property */ public function get($property, $default = null) @@ -80,7 +80,7 @@ public function get($property, $default = null) * * @see CMSObject::get() * - * @deprecated 4.3.0 will be removed in 6.0 + * @deprecated 4.3.0 will be removed in 7.0 * Create a proper getter function for the property */ public function getProperties($public = true) @@ -126,7 +126,7 @@ public function getProperties($public = true) * * @since 1.7.0 * - * @deprecated 4.3.0 will be removed in 6.0 + * @deprecated 4.3.0 will be removed in 7.0 * Create a proper setter function for the property */ public function set($property, $value = null) @@ -148,7 +148,7 @@ public function set($property, $value = null) * * @see CMSObject::set() * - * @deprecated 4.3.0 will be removed in 6.0 + * @deprecated 4.3.0 will be removed in 7.0 * Create a proper setter function for the property */ public function setProperties($properties)