Flag::getArgument()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
nc 1
1
<?php declare(strict_types=1);
2
3
namespace Gitilicious\GitClient\Cli\Input;
4
5
abstract class Flag implements Argument
6
{
7
    protected $flag;
8
9 11
    public function __construct(string $flag)
10
    {
11 11
        $this->flag = $flag;
12 11
    }
13
14
    abstract public function getArgument(): string;
15
}
16