SpecifiesLockPath
last analyzed

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 9

1 Method

Rating   Name   Duplication   Size   Complexity  
getLockPath() 0 1 ?
1
<?php
2
3
namespace FrankDeJonge\LockedConsoleCommand;
4
5
use Symfony\Component\Console\Input\InputInterface;
6
7
interface SpecifiesLockPath
8
{
9
    /**
10
     * Get the lock path.
11
     *
12
     * @return string
13
     */
14
    public function getLockPath(InputInterface $input);
15
}
16