firefly-iii/app/Http/Requests/Request.php

27 lines
494 B
PHP
Raw Normal View History

<?php
/**
* Request.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
namespace FireflyIII\Http\Requests;
2015-02-05 21:39:52 -06:00
use Illuminate\Foundation\Http\FormRequest;
/**
* Class Request
*
* @package FireflyIII\Http\Requests
*/
2015-02-11 00:35:10 -06:00
abstract class Request extends FormRequest
{
//
2015-02-05 21:39:52 -06:00
}