AssetExistsValidator   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 13
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A validate() 0 4 1
1
<?php
2
3
namespace App\Validation;
4
5
/**
6
 * Class AssetExistsValidator
7
 * @package App\Validation
8
 */
9
class AssetExistsValidator
10
{
11
    /**
12
     * @param $attribute
13
     * @param $value
14
     * @param $parameters
15
     * @return string
16
     */
17
    public function validate($attribute, $value, $parameters)
0 ignored issues
show
Unused Code introduced by
The parameter $attribute is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $parameters is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
18
    {
19
        return realpath(public_path() . DIRECTORY_SEPARATOR . $value);
20
    }
21
}
22