| 1 | <?php |
||
| 13 | class LabelFilter extends AbstractFilter implements FilterInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected $validArgTypes = array( |
||
| 19 | 'aliaas', |
||
| 20 | 'begin', |
||
| 21 | 'code', |
||
| 22 | 'comment', |
||
| 23 | 'country', |
||
| 24 | 'end', |
||
| 25 | 'ended', |
||
| 26 | 'ipi', |
||
| 27 | 'label', |
||
| 28 | 'labelaccent', |
||
| 29 | 'laid', |
||
| 30 | 'sortname', |
||
| 31 | 'tag', |
||
| 32 | 'type' |
||
| 33 | ); |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getEntity() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param array $response |
||
| 45 | * @param MusicBrainz $brainz |
||
| 46 | * |
||
| 47 | * @return Label[] |
||
| 48 | */ |
||
| 49 | public function parseResponse(array $response, MusicBrainz $brainz) |
||
| 59 | } |
||
| 60 |