Completed
Push — master ( 20f8c7...40c849 )
by Eliurkis
01:38
created

src/FieldTypes/Password.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Eliurkis\Crud\FieldTypes;
4
5
class Password
6
{
7
    public static function prepare($name, $value = null, $properties = [])
0 ignored issues
show
The parameter $value 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...
8
    {
9
        return \Form::password($name, $properties['attributes']);
10
    }
11
}
12