mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Update deprecated method in docblocks
So that the docblock doesn't point you to another deprecated method which then points you to the actual method.
This commit is contained in:
parent
1a1363fd2a
commit
4af2e5489b
1 changed files with 4 additions and 4 deletions
|
@ -47,7 +47,7 @@ class SecurityComponent extends Component {
|
|||
* List of controller actions for which a POST request is required
|
||||
*
|
||||
* @var array
|
||||
* @deprecated 3.0.0 Use CakeRequest::onlyAllow() instead.
|
||||
* @deprecated 3.0.0 Use CakeRequest::allowMethod() instead.
|
||||
* @see SecurityComponent::requirePost()
|
||||
*/
|
||||
public $requirePost = array();
|
||||
|
@ -56,7 +56,7 @@ class SecurityComponent extends Component {
|
|||
* List of controller actions for which a GET request is required
|
||||
*
|
||||
* @var array
|
||||
* @deprecated 3.0.0 Use CakeRequest::onlyAllow() instead.
|
||||
* @deprecated 3.0.0 Use CakeRequest::allowMethod() instead.
|
||||
* @see SecurityComponent::requireGet()
|
||||
*/
|
||||
public $requireGet = array();
|
||||
|
@ -65,7 +65,7 @@ class SecurityComponent extends Component {
|
|||
* List of controller actions for which a PUT request is required
|
||||
*
|
||||
* @var array
|
||||
* @deprecated 3.0.0 Use CakeRequest::onlyAllow() instead.
|
||||
* @deprecated 3.0.0 Use CakeRequest::allowMethod() instead.
|
||||
* @see SecurityComponent::requirePut()
|
||||
*/
|
||||
public $requirePut = array();
|
||||
|
@ -74,7 +74,7 @@ class SecurityComponent extends Component {
|
|||
* List of controller actions for which a DELETE request is required
|
||||
*
|
||||
* @var array
|
||||
* @deprecated 3.0.0 Use CakeRequest::onlyAllow() instead.
|
||||
* @deprecated 3.0.0 Use CakeRequest::allowMethod() instead.
|
||||
* @see SecurityComponent::requireDelete()
|
||||
*/
|
||||
public $requireDelete = array();
|
||||
|
|
Loading…
Reference in a new issue