Change scope of methods, add some notes. Prep for refactoring.

This commit is contained in:
James Cole
2018-08-09 16:07:33 +02:00
parent 32e58d0a60
commit 7943164375
41 changed files with 189 additions and 147 deletions

View File

@@ -206,7 +206,7 @@ class CreateController extends Controller
*
* @return array
*/
private function getActionsForBill(Bill $bill): array
protected function getActionsForBill(Bill $bill): array // get info and augument
{
try {
$result = view(
@@ -237,7 +237,7 @@ class CreateController extends Controller
*
* @return array
*/
private function getTriggersForBill(Bill $bill): array
protected function getTriggersForBill(Bill $bill): array // get info and augument
{
$result = [];
$triggers = ['currency_is', 'amount_more', 'amount_less', 'description_contains'];