preview_site-1.1.2/src/EntityHandlers/ParentNegotiation/DefaultParentNegotiation.php
src/EntityHandlers/ParentNegotiation/DefaultParentNegotiation.php
<?php
namespace Drupal\preview_site\EntityHandlers\ParentNegotiation;
use Drupal\Core\Entity\ContentEntityInterface;
/**
* Defines a default parent negotiation class.
*/
class DefaultParentNegotiation implements ParentNegotiationInterface {
/**
* {@inheritdoc}
*/
public function getParentEntity(ContentEntityInterface $entity): ?ContentEntityInterface {
return NULL;
}
}
