Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / rdf / tests / rdf_test_namespaces / rdf_test_namespaces.module
1 <?php
2
3 /**
4  * @file
5  * Test the namespace registration functionality.
6  */
7
8 /**
9  * Implements hook_rdf_namespaces().
10  */
11 function rdf_test_namespaces_rdf_namespaces() {
12   return [
13     'foaf'     => 'http://xmlns.com/foaf/0.1/',
14     'foaf1'    => 'http://xmlns.com/foaf/0.1/',
15   ];
16 }