Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / crop / src / CropStorageInterface.php
1 <?php
2
3 namespace Drupal\crop;
4
5 use Drupal\Core\Entity\EntityBundleListenerInterface;
6 use Drupal\Core\Entity\Schema\DynamicallyFieldableEntityStorageSchemaInterface;
7 use Drupal\Core\Entity\Sql\SqlEntityStorageInterface;
8
9 /**
10  * Provides an interface defining an crop storage controller.
11  */
12 interface CropStorageInterface extends SqlEntityStorageInterface, DynamicallyFieldableEntityStorageSchemaInterface, EntityBundleListenerInterface {
13
14 }