FormRequest
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 13
c 0
b 0
f 0
1
<?php namespace Arcanesoft\Pages\Bases;
2
3
use Arcanedev\Support\Bases\FormRequest as BaseFormRequest;
4
5
/**
6
 * Class     FormRequest
7
 *
8
 * @package  Arcanesoft\Pages\Bases
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
abstract class FormRequest extends BaseFormRequest
0 ignored issues
show
Deprecated Code introduced by
The class Arcanedev\Support\Bases\FormRequest has been deprecated with message: : Use `Arcanedev\Support\Http\FormRequest` or `Arcanedev\LaravelApiHelper\Http\FormRequest` instead.

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
12
{
13
    /* ------------------------------------------------------------------------------------------------
14
     |  Properties
15
     | ------------------------------------------------------------------------------------------------
16
     */
17
    /**
18
     * The message format.
19
     *
20
     * @var string
21
     */
22
    protected $errorsFormat = '<i class="fa fa-fw fa-exclamation-circle"></i> :message';
23
}
24