Skip to content

Commit 6e664b8

Browse files
committed
Add AuthorityFieldInterface
1 parent f2d1cf8 commit 6e664b8

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
namespace Scriptotek\Marc\Fields;
4+
5+
interface AuthorityFieldInterface extends FieldInterface
6+
{
7+
/**
8+
* The control number of the authority record.
9+
*
10+
* @return string|null
11+
*/
12+
public function getId(): ?string;
13+
14+
/**
15+
* The type of authority record.
16+
*
17+
* @return string
18+
*/
19+
public function getType(): string;
20+
}

0 commit comments

Comments
 (0)