Store booleans correctly.

This commit is contained in:
James Cole
2018-12-21 15:42:57 +01:00
parent 922c8703f5
commit a5520d45e7
6 changed files with 20 additions and 6 deletions

View File

@@ -80,7 +80,7 @@ class BillFactory
'date' => $data['date'],
'repeat_freq' => $data['repeat_freq'],
'skip' => $data['skip'],
'automatch' => $data['automatch'] ?? true,
'automatch' => true,
'active' => $data['active'] ?? true,
]
);