rdf_sync-1.x-dev/tests/modules/rdf_sync_test_plugins/src/Plugin/rdf_sync/RdfUriGenerator/Custom.php
tests/modules/rdf_sync_test_plugins/src/Plugin/rdf_sync/RdfUriGenerator/Custom.php
<?php
declare(strict_types=1);
namespace Drupal\rdf_sync_test_plugins\Plugin\rdf_sync\RdfUriGenerator;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\rdf_sync\Attribute\RdfUriGenerator;
use Drupal\rdf_sync\Plugin\rdf_sync\RdfUriGenerator\DefaultRdfUriGenerator;
/**
* Plugin class of a URI generator plugin used only for testing purposes.
*/
#[RdfUriGenerator(
id: "custom",
label: new TranslatableMarkup("Custom"),
)]
class Custom extends DefaultRdfUriGenerator {}
