mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Removing pre-beta deprecated method that was missed in last Release candidate
This commit is contained in:
parent
3d4b1e365d
commit
4c7b62bf64
1 changed files with 0 additions and 16 deletions
|
@ -801,22 +801,6 @@ class Set {
|
|||
return $val1 + $val2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines if two Sets or arrays are equal
|
||||
* This method is deprecated, and will be removed in a future release.
|
||||
*
|
||||
* @param array $val1 First value
|
||||
* @param array $val2 Second value
|
||||
* @return boolean true if they are equal, false otherwise
|
||||
* @access public
|
||||
* @static
|
||||
* @deprecated
|
||||
*/
|
||||
function isEqual($val1, $val2 = null) {
|
||||
trigger_error(__('Set::isEqual() is deprecated. Please use standard comparison operators instead.', true), E_USER_WARNING);
|
||||
return ($val1 == $val2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines if one Set or array contains the exact keys and values of another.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue