diff options
Diffstat (limited to 'src/phinde/Retrieved.php')
| -rw-r--r-- | src/phinde/Retrieved.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/phinde/Retrieved.php b/src/phinde/Retrieved.php new file mode 100644 index 0000000..5812b71 --- /dev/null +++ b/src/phinde/Retrieved.php @@ -0,0 +1,26 @@ +<?php +namespace phinde; + +/** + * Information retrieved by Fetcher + */ +class Retrieved +{ + /** + * @var \HTTP_Request2_Response + */ + public $httpRes; + + /** + * Existing elasticsearch document + * + * @var object + */ + public $esDoc; + + /** + * URL of document + */ + public $url; +} +?> |
