ScriptGeneratorInterface
last analyzed

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
generate() 0 1 ?
1
<?php
2
3
namespace Dekalee\AdbackAnalytics\Generator;
4
5
/**
6
 * Interface ScriptGeneratorInterface
7
 */
8
interface ScriptGeneratorInterface
9
{
10
    /**
11
     * @return string
12
     */
13
    public function generate();
14
}
15