public function FetcherResult::__construct in Feeds 8.3
Constructs a new FetcherResult object.
Parameters
string $file_path: The path to the result file.
1 call to FetcherResult::__construct()
- HttpFetcherResult::__construct in src/
Result/ HttpFetcherResult.php - Constructs an HttpFetcherResult object.
2 methods override FetcherResult::__construct()
- HttpFetcherResult::__construct in src/
Result/ HttpFetcherResult.php - Constructs an HttpFetcherResult object.
- RawFetcherResult::__construct in src/
Result/ RawFetcherResult.php - Constructs a RawFetcherResult object.
File
- src/
Result/ FetcherResult.php, line 25
Class
- FetcherResult
- The default fetcher result object.
Namespace
Drupal\feeds\ResultCode
public function __construct($file_path) {
$this->filePath = $file_path;
}