| 1 | <?php |
||
| 13 | class ScreenshotUploader |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var OutputInterface |
||
| 17 | */ |
||
| 18 | private $output; |
||
| 19 | |||
| 20 | /** @var ImageDriverInterface[] $imageDrivers */ |
||
| 21 | private $imageDrivers; |
||
| 22 | |||
| 23 | public function __construct(OutputInterface $output, array $imageDrivers) |
||
| 28 | |||
| 29 | public function upload($screenshot, $fileName = 'failure.png') |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param string $imageUrl |
||
| 39 | */ |
||
| 40 | private function printImageLocation($imageUrl) |
||
| 50 | } |