Test Setup Failed
Pull Request — master (#39)
by Pierre
12:34
created

Formater

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

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

4 Methods

Rating   Name   Duplication   Size   Complexity  
setOutput() 0 1 ?
getVerbosity() 0 1 ?
preLoad() 0 1 ?
postLoad() 0 1 ?
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Knp\Rad\FixturesLoad;
6
7
use Symfony\Component\Console\Output\OutputInterface;
8
9
interface Formater
10
{
11
    const VERBOSITY_NORMAL = false;
12
13
    const VERBOSITY_EXTRA = true;
14
15
    public function setOutput(OutputInterface $output);
0 ignored issues
show
Documentation introduced by
For interfaces and abstract methods it is generally a good practice to add a @return annotation even if it is just @return void or @return null, so that implementors know what to do in the overridden method.

For interface and abstract methods, it is impossible to infer the return type from the immediate code. In these cases, it is generally advisible to explicitly annotate these methods with a @return doc comment to communicate to implementors of these methods what they are expected to return.

Loading history...
16
17
    public function getVerbosity(): bool;
18
19
    public function preLoad(Event $event);
0 ignored issues
show
Documentation introduced by
For interfaces and abstract methods it is generally a good practice to add a @return annotation even if it is just @return void or @return null, so that implementors know what to do in the overridden method.

For interface and abstract methods, it is impossible to infer the return type from the immediate code. In these cases, it is generally advisible to explicitly annotate these methods with a @return doc comment to communicate to implementors of these methods what they are expected to return.

Loading history...
20
21
    public function postLoad(Event $event);
0 ignored issues
show
Documentation introduced by
For interfaces and abstract methods it is generally a good practice to add a @return annotation even if it is just @return void or @return null, so that implementors know what to do in the overridden method.

For interface and abstract methods, it is impossible to infer the return type from the immediate code. In these cases, it is generally advisible to explicitly annotate these methods with a @return doc comment to communicate to implementors of these methods what they are expected to return.

Loading history...
22
}
23