Generator
last analyzed

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
generate() 0 1 ?
1
<?php
2
namespace TildBJ\Seeder;
3
4
/**
5
 * Interface Generator
6
 *
7
 * @package TildBJ\Seeder\Information
8
 */
9
interface Generator
0 ignored issues
show
Coding Style introduced by
Generator does not seem to conform to the naming convention (^[A-Z][a-zA-Z0-9]*Interface$).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
10
{
11
    const PREFIX = '$faker->get';
12
    const SUFFIX = '()';
13
14
    /**
15
     * @return mixed
16
     */
17
    public function generate($parameter);
18
}
19