Added newlines to files.

This commit is contained in:
James Cole 2015-05-20 19:56:14 +02:00
parent b1d3158db1
commit 8f104d555a
42 changed files with 42 additions and 42 deletions

View File

@ -87,4 +87,4 @@ class Account
} }
} }

View File

@ -61,4 +61,4 @@ class Balance
} }
} }

View File

@ -71,4 +71,4 @@ class BalanceEntry
} }
} }

View File

@ -43,4 +43,4 @@ class BalanceHeader
} }
} }

View File

@ -167,4 +167,4 @@ class BalanceLine
} }
} }

View File

@ -53,4 +53,4 @@ class Bill
return $this->bills; return $this->bills;
} }
} }

View File

@ -122,4 +122,4 @@ class BillLine
} }
} }

View File

@ -145,4 +145,4 @@ class Budget
} }
} }

View File

@ -127,4 +127,4 @@ class BudgetLine
} }
} }

View File

@ -77,4 +77,4 @@ class Category
} }
} }

View File

@ -79,4 +79,4 @@ class Expense
{ {
return $this->total; return $this->total;
} }
} }

View File

@ -82,4 +82,4 @@ class Income
} }
} }

View File

@ -147,4 +147,4 @@ class AccountController extends Controller
return Response::json($chart->getData()); return Response::json($chart->getData());
} }
} }

View File

@ -138,4 +138,4 @@ class BillController extends Controller
return Response::json($chart->getData()); return Response::json($chart->getData());
} }
} }

View File

@ -192,4 +192,4 @@ class BudgetController extends Controller
return Response::json($chart->getData()); return Response::json($chart->getData());
} }
} }

View File

@ -164,4 +164,4 @@ class CategoryController extends Controller
return Response::json($chart->getData()); return Response::json($chart->getData());
} }
} }

View File

@ -55,4 +55,4 @@ class PiggyBankController extends Controller
return Response::json($chart->getData()); return Response::json($chart->getData());
} }
} }

View File

@ -98,4 +98,4 @@ class ReportController extends Controller
return Response::json($chart->getData()); return Response::json($chart->getData());
} }
} }

View File

@ -71,4 +71,4 @@ return [
'edit_tag' => 'Edit tag ":tag"', 'edit_tag' => 'Edit tag ":tag"',
'delete_tag' => 'Delete tag ":tag"', 'delete_tag' => 'Delete tag ":tag"',
]; ];

View File

@ -75,4 +75,4 @@ return [
'|All :count transactions connected to this budget will spared deletion.', '|All :count transactions connected to this budget will spared deletion.',
'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.' . 'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.' .
'|All :count transactions connected to this category will spared deletion.', '|All :count transactions connected to this category will spared deletion.',
]; ];

View File

@ -29,4 +29,4 @@ return [
'transfer' => 'Transfer', 'transfer' => 'Transfer',
'type' => 'Type', 'type' => 'Type',
'completed' => 'Completed', 'completed' => 'Completed',
]; ];

View File

@ -70,4 +70,4 @@ return [
'edit_tag' => 'Wijzig tag ":tag"', 'edit_tag' => 'Wijzig tag ":tag"',
'delete_tag' => 'Verwijder tag ":tag"', 'delete_tag' => 'Verwijder tag ":tag"',
]; ];

View File

@ -75,4 +75,4 @@ return [
'|De :count transacties verbonden aan dit budget blijven bewaard.', '|De :count transacties verbonden aan dit budget blijven bewaard.',
'category_keep_transactions' => 'De transactie verbonden aan deze categorie blijft bewaard.' . 'category_keep_transactions' => 'De transactie verbonden aan deze categorie blijft bewaard.' .
'|De :count transacties verbonden aan deze categorie blijven bewaard.', '|De :count transacties verbonden aan deze categorie blijven bewaard.',
]; ];

View File

@ -30,4 +30,4 @@ return [
'type' => 'Type', 'type' => 'Type',
'completed' => 'Opgeslagen' 'completed' => 'Opgeslagen'
]; ];

View File

@ -27,4 +27,4 @@
<td>{{ accounts.getDifference|formatAmount }}</td> <td>{{ accounts.getDifference|formatAmount }}</td>
</tr> </tr>
</table> </table>
</div> </div>

View File

@ -156,4 +156,4 @@
</table> </table>
--> -->
</div> </div>

View File

@ -48,4 +48,4 @@
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
</div> </div>

View File

@ -59,4 +59,4 @@
<td><span class="text-danger">{{ budgets.getOverspent|formatAmountPlain }}</span></td> <td><span class="text-danger">{{ budgets.getOverspent|formatAmountPlain }}</span></td>
</tr> </tr>
</table> </table>
</div> </div>

View File

@ -21,4 +21,4 @@
<td class="text-danger">{{ categories.getTotal|formatAmountPlain }}</td> <td class="text-danger">{{ categories.getTotal|formatAmountPlain }}</td>
</tr> </tr>
</table> </table>
</div> </div>

View File

@ -31,4 +31,4 @@
<td><span class="text-danger">{{ (expenses.getTotal)|formatAmountPlain }}</span></td> <td><span class="text-danger">{{ (expenses.getTotal)|formatAmountPlain }}</span></td>
</tr> </tr>
</table> </table>
</div> </div>

View File

@ -17,4 +17,4 @@
<td>{{ (incomes.getTotal + expenses.getTotal)|formatAmount }}</td> <td>{{ (incomes.getTotal + expenses.getTotal)|formatAmount }}</td>
</tr> </tr>
</table> </table>
</div> </div>

View File

@ -31,4 +31,4 @@
<td>{{ incomes.getTotal|formatAmount }}</td> <td>{{ incomes.getTotal|formatAmount }}</td>
</tr> </tr>
</table> </table>
</div> </div>

View File

@ -37,4 +37,4 @@ class ChartAccountControllerTest extends TestCase
{ {
$this->markTestIncomplete(); $this->markTestIncomplete();
} }
} }

View File

@ -34,4 +34,4 @@ class ChartBillControllerTest extends TestCase
} }
} }

View File

@ -38,4 +38,4 @@ class ChartBudgetControllerTest extends TestCase
$this->markTestIncomplete(); $this->markTestIncomplete();
} }
} }

View File

@ -43,4 +43,4 @@ class ChartCategoryControllerTest extends TestCase
$this->markTestIncomplete(); $this->markTestIncomplete();
} }
} }

View File

@ -27,4 +27,4 @@ class ChartPiggyBankControllerTest extends TestCase
{ {
$this->markTestIncomplete(); $this->markTestIncomplete();
} }
} }

View File

@ -32,4 +32,4 @@ class ChartReportControllerTest extends TestCase
{ {
$this->markTestIncomplete(); $this->markTestIncomplete();
} }
} }

View File

@ -220,4 +220,4 @@ class ConnectJournalToPiggyBankTest extends TestCase
$this->assertCount(1, $piggyBank->piggyBankEvents()->get()); $this->assertCount(1, $piggyBank->piggyBankEvents()->get());
} }
} }

View File

@ -164,4 +164,4 @@ class ReminderHelperTest extends TestCase
$this->assertTrue(!($strpos === false)); $this->assertTrue(!($strpos === false));
} }
} }

View File

@ -50,4 +50,4 @@ class ReportHelperTest extends TestCase
} }
} }

View File

@ -97,4 +97,4 @@ class ReportQueryTest extends TestCase
$this->markTestIncomplete(); $this->markTestIncomplete();
} }
} }