1 | <?php namespace Arcanesoft\Auth\Http\Requests; |
||
11 | abstract class FormRequest extends BaseFormRequest |
||
12 | { |
||
13 | /* ----------------------------------------------------------------- |
||
14 | | Other Methods |
||
15 | | ----------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | /** |
||
19 | * Get the database connection. |
||
20 | * |
||
21 | * @return string |
||
22 | */ |
||
23 | protected function getDbConnection() |
||
27 | |||
28 | /** |
||
29 | * Get the table's prefix. |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | protected function getPrefixTable() |
||
37 | } |
||
38 |