| 1: | <?php |
| 2: | |
| 3: | namespace Scopus\Response; |
| 4: | |
| 5: | class CitationCountLinks |
| 6: | { |
| 7: | /** |
| 8: | * @var array |
| 9: | */ |
| 10: | protected $links; |
| 11: | |
| 12: | public function __construct(array $links) |
| 13: | { |
| 14: | $this->links = []; |
| 15: | |
| 16: | foreach ($links as $link) { |
| 17: | $this->links[$link['@rel']] = [ |
| 18: | 'href' => $link['@href'], |
| 19: | 'fa' => $link['@_fa'], |
| 20: | ]; |
| 21: | } |
| 22: | } |
| 23: | } |
| 24: |