829edfbe030eae4a625f15bba0a7354a1aeb1217
[yaffs-website] / VocabularySerializationTestController.php
1 <?php
2
3 namespace Drupal\vocabulary_serialization_test;
4
5 use Drupal\taxonomy\VocabularyInterface;
6
7 class VocabularySerializationTestController {
8
9   public function vocabularyResponse(VocabularyInterface $taxonomy_vocabulary) {
10     $response = new VocabularyResponse('this is the output');
11     $response->setVocabulary($taxonomy_vocabulary);
12     return $response;
13   }
14
15 }