Do not use STDOUT and STDERR constants
[phinde.git] / src / phinde / Retrieved.php
1 <?php
2 namespace phinde;
3
4 /**
5  * Information retrieved by Fetcher
6  */
7 class Retrieved
8 {
9     /**
10      * @var \HTTP_Request2_Response
11      */
12     public $httpRes;
13
14     /**
15      * Existing elasticsearch document
16      *
17      * @var object
18      */
19     public $esDoc;
20
21     /**
22      * URL of document
23      */
24     public $url;
25 }
26 ?>