Skip to content

Commit

Permalink
Fix doc blocks in RepositoryInterface and Marshaller
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrowe committed Mar 5, 2014
1 parent d6175bb commit 3316895
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/Datasource/RepositoryInterface.php
Expand Up @@ -75,7 +75,7 @@ public function query();
*
* @param array $fields A hash of field => new value.
* @param array $conditions An array of conditions, similar to those used with find()
* @return boolean Success Returns true if one or more rows are effected.
* @return boolean Success Returns true if one or more rows are affected.
*/
public function updateAll($fields, $conditions);

Expand All @@ -87,12 +87,12 @@ public function updateAll($fields, $conditions);
* This method will *not* trigger beforeDelete/afterDelete events. If you
* need those first load a collection of records and delete them.
*
* This method will *not* execute on associations `cascade` attribute. You should
* This method will *not* execute on associations' `cascade` attribute. You should
* use database foreign keys + ON CASCADE rules if you need cascading deletes combined
* with this method.
*
* @param array $conditions An array of conditions, similar to those used with find()
* @return boolean Success Returns true if one or more rows are effected.
* @return boolean Success Returns true if one or more rows are affected.
* @see RepositoryInterface::delete()
*/
public function deleteAll($conditions);
Expand Down
4 changes: 2 additions & 2 deletions src/ORM/Marshaller.php
Expand Up @@ -157,12 +157,12 @@ public function many(array $data, $include = []) {
}

/**
* Marshalls data for belongsToMany associations.
* Marshals data for belongsToMany associations.
*
* Builds the related entities and handles the special casing
* for junction table entities.
*
* @param Association $assoc The association to marshall.
* @param Association $assoc The association to marshal.
* @param array $data The data to convert into entities.
* @param array $include The nested associations to convert.
* @return array An array of built entities.
Expand Down

0 comments on commit 3316895

Please sign in to comment.