From 6ad30946d8cc2e87327bd6db60802374840e9778 Mon Sep 17 00:00:00 2001 From: chinpei215 Date: Mon, 4 Dec 2017 23:31:32 +0900 Subject: [PATCH] Fix CS --- lib/Cake/Model/Model.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/Cake/Model/Model.php b/lib/Cake/Model/Model.php index b9c041cec..cb0b6ef83 100644 --- a/lib/Cake/Model/Model.php +++ b/lib/Cake/Model/Model.php @@ -1688,9 +1688,6 @@ class Model extends CakeObject implements CakeEventListener { * Saves the value of a single field to the database, based on the current * model ID. * - * @deprecated 3.0.0 To ease migration to the new major, do not use this method anymore. - * Stateful model usage will be removed. Use the existing save() methods instead. - * * @param string $name Name of the table field * @param mixed $value Value of the field * @param bool|array $validate Either a boolean, or an array. @@ -1698,6 +1695,8 @@ class Model extends CakeObject implements CakeEventListener { * If an array, allows control of 'validate', 'callbacks' and 'counterCache' options. * See Model::save() for details of each options. * @return bool|array See Model::save() False on failure or an array of model data on success. + * @deprecated 3.0.0 To ease migration to the new major, do not use this method anymore. + * Stateful model usage will be removed. Use the existing save() methods instead. * @see Model::save() * @link https://book.cakephp.org/2.0/en/models/saving-your-data.html#model-savefield-string-fieldname-string-fieldvalue-validate-false */