Add newline to files

This commit is contained in:
James Cole
2019-08-17 12:09:03 +02:00
parent b53cbbe469
commit fc78c32fca
153 changed files with 243 additions and 125 deletions

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* CreateController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -100,4 +101,4 @@ class CreateController extends Controller
return $redirect;
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* DeleteController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -89,4 +90,4 @@ class DeleteController extends Controller
return redirect($this->getPreviousUri('categories.delete.uri'));
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* EditController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -106,4 +107,4 @@ class EditController extends Controller
return $redirect;
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* IndexController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -86,4 +87,4 @@ class IndexController extends Controller
return view('categories.index', compact('categories'));
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* RuleController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -93,4 +94,4 @@ class RuleController extends Controller
return response()->json(['html' => $view]);
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* BillController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -70,4 +71,4 @@ class BillController extends Controller
return $result;
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* CreateController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -99,4 +100,4 @@ class CreateController extends Controller
return $redirect;
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* DeleteController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -95,4 +96,4 @@ class DeleteController extends Controller
return redirect($this->getPreviousUri('rule-groups.delete.uri'));
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* EditController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -146,4 +147,4 @@ class EditController extends Controller
return $redirect;
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* ExecutionController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -133,4 +134,4 @@ class ExecutionController extends Controller
}
}
}

View File

@@ -88,4 +88,4 @@ class CreateController extends Controller
)
);
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* DeleteController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -119,4 +120,4 @@ class DeleteController extends Controller
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* EditController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -82,4 +83,4 @@ class EditController extends Controller
return view('transactions.edit', compact('cash', 'transactionGroup', 'allowedOpposingTypes', 'accountToTypes', 'defaultCurrency', 'previousUri'));
}
}
}

View File

@@ -153,4 +153,4 @@ class IndexController extends Controller
return view('transactions.index', compact('subTitle', 'objectType', 'subTitleIcon', 'groups', 'start', 'end'));
}
}
}

View File

@@ -128,4 +128,4 @@ class ShowController extends Controller
return $amounts;
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* InterestingMessage.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -116,4 +117,4 @@ class InterestingMessage
// ignore middleware in test environment.
return 'testing' === config('app.env') || !auth()->check();
}
}
}