From 649b0d99d2b97b24f084de1951a78b2cb9245f07 Mon Sep 17 00:00:00 2001 From: Jose Lorenzo Rodriguez Date: Mon, 3 Mar 2014 18:38:17 +0100 Subject: [PATCH] Another CS fix --- src/Datasource/RepositoryInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Datasource/RepositoryInterface.php b/src/Datasource/RepositoryInterface.php index 05b15454f8c..fe47892fd74 100644 --- a/src/Datasource/RepositoryInterface.php +++ b/src/Datasource/RepositoryInterface.php @@ -186,7 +186,7 @@ public function newEntities(array $data, $associations = null); * @param array $include The list of associations to be merged * @return \Cake\Datasource\EntityInterface */ - public function patchEntity(EntityInterface $entity, array $data, $associations = null); + public function patchEntity(EntityInterface $entity, array $data, $associations = null); /** * Merges each of the elements passed in `$data` into the entities @@ -206,6 +206,6 @@ public function patchEntity(EntityInterface $entity, array $data, $associations * @param array $include The list of associations to be merged * @return array */ - public function patchEntities($entities, array $data, $associations = null); + public function patchEntities($entities, array $data, $associations = null); }