ShellExecutable::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace PHPSu\ShellCommandBuilder\Literal;
6
7
/**
8
 * @internal
9
 * @psalm-internal PHPSu\ShellCommandBuilder
10
 */
11
final class ShellExecutable extends ShellWord
12
{
13
    protected $isArgument = true;
14
    protected $spaceAfterValue = false;
15
    protected $isEscaped = false;
16
    protected $delimiter = '';
17
    protected $prefix = '';
18
    protected $suffix = '';
19
20
    public function __construct(string $executable)
21
    {
22
        parent::__construct($executable);
23
    }
24
}
25