Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libraries/src/Object/CMSObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
*/
Expand Down Expand Up @@ -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()
Expand Down
8 changes: 4 additions & 4 deletions libraries/src/Object/LegacyErrorHandlingTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand All @@ -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
*/
Expand Down
12 changes: 6 additions & 6 deletions libraries/src/Object/LegacyPropertyManagementTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
Expand All @@ -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)
Expand Down