Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / paragraphs / src / ParagraphInterface.php
1 <?php
2
3 namespace Drupal\paragraphs;
4
5 use Drupal\user\EntityOwnerInterface;
6 use Drupal\Core\Entity\ContentEntityInterface;
7
8 /**
9  * Provides an interface defining a paragraphs entity.
10  * @ingroup paragraphs
11  */
12 interface ParagraphInterface extends ContentEntityInterface, EntityOwnerInterface
13 {
14
15   /**
16    * Gets the parent entity of the paragraph.
17    *
18    * Preserves language context with translated entities.
19    *
20    * @return ContentEntityInterface
21    *   The parent entity.
22    */
23   public function getParentEntity();
24 }