| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class GitCommit |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $commitMessage; |
||
| 17 | |||
| 18 | public function __construct(string $commitMessage) |
||
| 19 | { |
||
| 20 | $this->commitMessage = $commitMessage; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function __invoke(string $name, InputInterface $input, OutputInterface $output) |
||
| 39 | } |
||
| 40 | } |
||
| 42 |