17 lines
433 B
PHP
17 lines
433 B
PHP
<?php
|
|
|
|
namespace Mpdf;
|
|
|
|
interface AssetFetcherInterface
|
|
{
|
|
/**
|
|
* Fetch data from a given path, either local or remote.
|
|
*
|
|
* @param string $path The path to fetch data from.
|
|
* @param string|null $originalSrc The original source path, if applicable.
|
|
* @return string The fetched data.
|
|
* @throws \Mpdf\Exception\AssetFetchingException If fetching fails.
|
|
*/
|
|
public function fetchDataFromPath($path, $originalSrc = null);
|
|
}
|