| 1 | <?php |
||
| 17 | class GithubMarkdownAdapter implements MarkdownAdapterInterface |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * |
||
| 22 | * @var Client |
||
| 23 | */ |
||
| 24 | private $httpClient; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * |
||
| 28 | * @var GithubMarkdownOptions |
||
| 29 | */ |
||
| 30 | private $options; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * |
||
| 34 | * @var Request |
||
| 35 | */ |
||
| 36 | private $request; |
||
| 37 | |||
| 38 | 2 | public function __construct(Client $httpClient, Request $request, GithubMarkdownOptions $options) |
|
| 44 | |||
| 45 | 1 | public function transformText($text) |
|
| 64 | } |
||
| 65 |