Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | class ResponsiveQuoteController |
||
8 | { |
||
9 | /*public function __invoke() |
||
10 | { |
||
11 | //return PhpResponsiveQuote::getRandomQuote(); |
||
12 | dd("asd 1"); |
||
13 | return view('php-responsive-quote::show', [ |
||
14 | 'quote' => PhpResponsiveQuote::getRandomQuote(), |
||
15 | ]); |
||
16 | }*/ |
||
17 | |||
18 | |||
19 | /** |
||
20 | * Display the specified resource. |
||
21 | * |
||
22 | * @return \Illuminate\Http\Response |
||
23 | */ |
||
24 | 1 | public function index() |
|
37 |