Completed
Pull Request — master (#82)
by Jan Philipp
04:53 queued 27s
created

ProcessCommand::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 13
rs 9.8333
c 0
b 0
f 0
cc 1
nc 1
nop 5
1
<?php
2
3
namespace Shopware\Psh\ScriptRuntime;
4
5
/**
6
 * A single command of a script
7
 */
8
interface ProcessCommand extends Command
9
{
10
    /**
11
     * @return boolean
12
     */
13
    public function isIgnoreError(): bool;
14
15
    /**
16
     * @return int
17
     */
18
    public function getLineNumber(): int;
19
20
    /**
21
     * @return bool
22
     */
23
    public function isTTy(): bool;
24
}
25