1 | <?php namespace Cerbero\Auth\Exceptions; |
||
10 | trait DisplaysExceptions { |
||
11 | |||
12 | /** |
||
13 | * @author Andrea Marco Sartori |
||
14 | * @var array $display Exceptions to display to the user. |
||
15 | */ |
||
16 | protected $display = array(); |
||
17 | |||
18 | /** |
||
19 | * Determine how to render the DisplayException. |
||
20 | * |
||
21 | * @author Andrea Marco Sartori |
||
22 | * @param \Exception $e |
||
23 | * @return Illuminate\Http\RedirectResponse |
||
24 | */ |
||
25 | protected function displayExceptions(Exception $e) |
||
37 | |||
38 | } |
||
39 |