Add build modification settings, fix exception handling to log to file

This commit is contained in:
Dane Everitt 2017-07-23 19:57:43 -05:00
parent ace70a3599
commit f842aae3d3
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
15 changed files with 427 additions and 50 deletions

View file

@ -83,7 +83,7 @@ interface RepositoryInterface
/**
* Delete a given record from the database.
*
* @param int $id
* @param int $id
* @return bool|null
*/
public function delete($id);
@ -130,6 +130,17 @@ interface RepositoryInterface
*/
public function update($id, array $fields, $validate = true, $force = false);
/**
* Perform a mass update where matching records are updated using whereIn.
* This does not perform any model data validation.
*
* @param string $column
* @param array $values
* @param array $fields
* @return int
*/
public function updateWhereIn($column, array $values, array $fields);
/**
* Update multiple records matching the passed clauses.
*