| 1 | <?php |
||
| 11 | class LocalFileProvider implements ProviderInterface |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $filePath; |
||
| 18 | |||
| 19 | |||
| 20 | /** |
||
| 21 | * LocalFileProvider constructor. |
||
| 22 | * |
||
| 23 | * @param string $filePath |
||
| 24 | * |
||
| 25 | * @throws FileNotFoundException if the file doesn't exist |
||
| 26 | */ |
||
| 27 | public function __construct($filePath) |
||
| 35 | |||
| 36 | |||
| 37 | /** |
||
| 38 | * @inheritdoc |
||
| 39 | */ |
||
| 40 | public function getRawCertificate() |
||
| 44 | |||
| 45 | } |
||
| 46 |