1: <?php
2:
3: namespace Scopus\Response;
4:
5: class EntryLinks extends BaseLinks
6: {
7: public function getAuthorAffiliation()
8: {
9: return $this->links['author-affiliation'];
10: }
11:
12: public function getScopus()
13: {
14: return $this->links['scopus'];
15: }
16:
17: public function getScopusCitedby()
18: {
19: return $this->links['scopus-citedby'];
20: }
21: }