Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
40 | private function printImageLocation($imageUrl) |
||
41 | { |
||
42 | $message = sprintf( |
||
43 | '<comment>Screenshot has been taken. Open image at <error>%s</error></comment>', |
||
44 | $imageUrl |
||
45 | ); |
||
46 | $options = $this->output->isDecorated() ? OutputInterface::OUTPUT_NORMAL : OutputInterface::OUTPUT_PLAIN; |
||
47 | |||
48 | $this->output->writeln($message, $options); |
||
49 | } |
||
50 | } |