Skip to content

Commit c932a39

Browse files
committed
Merge branch 'dev' into production
2 parents 605f205 + 1bdd7bf commit c932a39

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

src/RecordManager/Base/Record/MarcAuthority.php

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,4 +304,40 @@ function ($field) use ($mask) {
304304
$fields
305305
);
306306
}
307+
308+
/**
309+
* Add author fields.
310+
*
311+
* @param array $data Data array to manipulate
312+
*
313+
* @return void
314+
*/
315+
protected function addAuthorFields(array &$data): void
316+
{
317+
// Nothing to do for authority records.
318+
}
319+
320+
/**
321+
* Augment call number fields with additional data.
322+
*
323+
* @param array $data Data array to manipulate
324+
*
325+
* @return void
326+
*/
327+
protected function augmentCallNumberFields(array &$data): void
328+
{
329+
// Nothing to do for authority records.
330+
}
331+
332+
/**
333+
* Add Dewey fields.
334+
*
335+
* @param array $data Data array to manipulate
336+
*
337+
* @return void
338+
*/
339+
protected function addDeweyFields(array &$data): void
340+
{
341+
// Nothing to do for authority records.
342+
}
307343
}

0 commit comments

Comments
 (0)