Backup of db before drupal security update
[yaffs-website] / web / core / modules / taxonomy / tests / modules / vocabulary_serialization_test / src / 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 }