| 1 | <?php |
||
| 11 | class NullResponseParser implements ResponseParser { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var FilteredRecord |
||
| 15 | */ |
||
| 16 | private $filteredRecord; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @since 0.1 |
||
| 20 | * |
||
| 21 | * @param FilteredRecord $filteredRecord |
||
| 22 | */ |
||
| 23 | 2 | public function __construct( FilteredRecord $filteredRecord ) { |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @since 0.1 |
||
| 29 | * |
||
| 30 | * {@inheritDoc} |
||
| 31 | */ |
||
| 32 | 1 | public function getFilteredRecord() { |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @since 0.1 |
||
| 38 | * |
||
| 39 | * {@inheritDoc} |
||
| 40 | */ |
||
| 41 | 1 | public function getMessages() { |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @since 0.1 |
||
| 47 | * |
||
| 48 | * {@inheritDoc} |
||
| 49 | */ |
||
| 50 | 1 | public function usesCache() { |
|
| 53 | |||
| 54 | /** |
||
| 55 | * @since 0.3 |
||
| 56 | * |
||
| 57 | * {@inheritDoc} |
||
| 58 | */ |
||
| 59 | public function isFromCache() { |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @since 0.3 |
||
| 65 | * |
||
| 66 | * {@inheritDoc} |
||
| 67 | */ |
||
| 68 | public function doFilterResponseById( $query ) {} |
||
| 69 | |||
| 70 | /** |
||
| 71 | * @since 0.1 |
||
| 72 | * |
||
| 73 | * {@inheritDoc} |
||
| 74 | */ |
||
| 75 | public function doFilterResponseFor( $query ) {} |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @since 0.3 |
||
| 79 | * |
||
| 80 | * {@inheritDoc} |
||
| 81 | */ |
||
| 82 | 1 | public function getRawResponseById( $query ) { |
|
| 85 | |||
| 86 | /** |
||
| 87 | * @since 0.1 |
||
| 88 | * |
||
| 89 | * {@inheritDoc} |
||
| 90 | */ |
||
| 91 | public function getRawResponse( $query ) { |
||
| 94 | |||
| 95 | } |
||
| 96 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.