| 1 | <?php namespace Scriptotek\OaiPmh; |
||
| 6 | class GetRecordResponse extends Response |
||
| 7 | { |
||
| 8 | |||
| 9 | /** @var Record Single record */ |
||
| 10 | public $record; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | public $schema; |
||
| 14 | |||
| 15 | public function __get($name) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Create a new GetRecord response |
||
| 24 | * |
||
| 25 | * @param string $text Raw XML response |
||
| 26 | */ |
||
| 27 | public function __construct($text) |
||
| 34 | } |
||
| 35 |