Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update DatabaseRule.php
  • Loading branch information
lloricode authored Mar 3, 2021
commit b3d007434914e04574004fa22b2c72bdaa6222bd
2 changes: 1 addition & 1 deletion src/Illuminate/Validation/Rules/DatabaseRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public function queryCallbacks()
*/
protected function formatWheres()
{
return collect($this->wheres)->map( function ($where) {
return collect($this->wheres)->map(function ($where) {
if (is_bool($where['value'])) {
return $where['column'].','.'true';
} else {
Expand Down