From 1fa0fda31d71ed0fe222790c8cb039a33786199f Mon Sep 17 00:00:00 2001 From: ADmad Date: Sun, 10 Aug 2025 17:43:55 +0530 Subject: [PATCH] Update validation.rst Refs cakephp/cakephp#18812 --- en/orm/validation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/orm/validation.rst b/en/orm/validation.rst index 54c95f8723..38ee56dd8d 100644 --- a/en/orm/validation.rst +++ b/en/orm/validation.rst @@ -297,7 +297,7 @@ class:: // In a table class public function buildRules(RulesChecker $rules): RulesChecker { - // Add a rule that is applied for create, update and delete operations + // Add a rule that is applied for create and update operations $rules->add(function ($entity, $options) { // Return a boolean to indicate pass/failure }, 'ruleName');