Show   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 6 1
1
<?php
2
3
namespace App\Http\Controllers\DnaMatching;
4
5
use App\Models\DnaMatching;
6
use Illuminate\Routing\Controller;
7
8
class Show extends Controller
9
{
10
    public function __invoke(DnaMatching $dnamatching)
11
    {
12
        error_log('message here.in show.php');
13
        error_log(' --------here is show.php------------->', 3, base_path().'/log/log.log');
14
15
        return ['dnamatching' => $dnamatching];
16
    }
17
}
18