diff --git a/src/Datasource/EntityInterface.php b/src/Datasource/EntityInterface.php index 5db374fdeb8..b4e24cfff29 100644 --- a/src/Datasource/EntityInterface.php +++ b/src/Datasource/EntityInterface.php @@ -69,7 +69,7 @@ public function unsetProperty($property); * will be returned. Otherwise the hidden properties will be set. * * @param null|array $properties Either an array of properties to hide or null to get properties - * @return array|\Cake\DataSource\EntityInterface + * @return array|\Cake\Datasource\EntityInterface */ public function hiddenProperties($properties = null); @@ -80,7 +80,7 @@ public function hiddenProperties($properties = null); * will be returned. Otherwise the virtual properties will be set. * * @param null|array $properties Either an array of properties to treat as virtual or null to get properties - * @return array|\Cake\DataSource\EntityInterface + * @return array|\Cake\Datasource\EntityInterface */ public function virtualProperties($properties = null); diff --git a/src/ORM/Table.php b/src/ORM/Table.php index 372b555e791..da87ce4e919 100644 --- a/src/ORM/Table.php +++ b/src/ORM/Table.php @@ -1656,7 +1656,7 @@ public function delete(EntityInterface $entity, $options = []) * Will delete the entity provided. Will remove rows from any * dependent associations, and clear out join tables for BelongsToMany associations. * - * @param \Cake\DataSource\EntityInterface $entity The entity to delete. + * @param \Cake\Datasource\EntityInterface $entity The entity to delete. * @param \ArrayObject $options The options for the delete. * @throws \InvalidArgumentException if there are no primary key values of the * passed entity diff --git a/src/View/Form/EntityContext.php b/src/View/Form/EntityContext.php index fdaba75fa32..18044631859 100644 --- a/src/View/Form/EntityContext.php +++ b/src/View/Form/EntityContext.php @@ -256,7 +256,7 @@ protected function _extractMultiple($values, $path) * * @param array|null $path Each one of the parts in a path for a field name * or null to get the entity passed in contructor context. - * @return \Cake\DataSource\EntityInterface|\Traversable|array|bool + * @return \Cake\Datasource\EntityInterface|\Traversable|array|bool * @throws \RuntimeException When properties cannot be read. */ public function entity($path = null)