project_wiki-1.x-dev/src/Plugin/ProjectWikiContentInterface.php
src/Plugin/ProjectWikiContentInterface.php
<?php
namespace Drupal\project_wiki\Plugin;
/**
* The interface employed by ProjectWikiEntityContentValueObject.
*/
interface ProjectWikiContentInterface {
/**
* Retrieves the plugin's value objects.
*
* @return ProjectWikiValueObjectInterface[]
* The project wiki value objects.
*/
public function getValueObjects(): array;
}
