firefly-iii/app/controllers/AccountController.php

98 lines
1.6 KiB
PHP
Raw Normal View History

<?php
2014-07-02 16:31:59 -05:00
//use Firefly\Storage\Account\AccountRepositoryInterface as ARI;
2014-07-04 04:39:21 -05:00
class AccountController extends \BaseController
{
2014-07-02 16:31:59 -05:00
// public function __construct(ARI $accounts) {
// $this->accounts = $accounts;
// }
//
// /**
// * Display a listing of the resource.
// *
// * @return Response
// */
// public function index()
// {
//
// }
//
//
2014-07-04 04:39:21 -05:00
/**
* Show the form for creating a new resource.
*
* @return Response
*/
public function create()
{
return View::make('accounts.create');
}
2014-07-02 16:31:59 -05:00
//
//
// /**
// * Store a newly created resource in storage.
// *
// * @return Response
// */
// public function store()
// {
// $account = $this->accounts->store();
// if($account === false) {
// Session::flash('error','Could not create account with provided information');
// return Redirect::route('accounts.create')->withInput()->withErrors($this->accounts->validator);
// }
// }
//
//
// /**
// * Display the specified resource.
// *
// * @param int $id
// * @return Response
// */
// public function show($id)
// {
// //
// }
//
//
// /**
// * Show the form for editing the specified resource.
// *
// * @param int $id
// * @return Response
// */
// public function edit($id)
// {
// //
// }
//
//
// /**
// * Update the specified resource in storage.
// *
// * @param int $id
// * @return Response
// */
// public function update($id)
// {
// //
// }
//
//
// /**
// * Remove the specified resource from storage.
// *
// * @param int $id
// * @return Response
// */
// public function destroy($id)
// {
// //
// }
}