Show::__invoke()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 1
dl 0
loc 6
rs 10
c 0
b 0
f 0
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