Skip to content

Instantly share code, notes, and snippets.

@adityaanurag
Last active July 4, 2016 19:30
Show Gist options
  • Save adityaanurag/6406e60f85d8d76845014816c7e5a449 to your computer and use it in GitHub Desktop.
Save adityaanurag/6406e60f85d8d76845014816c7e5a449 to your computer and use it in GitHub Desktop.
<?php
namespace Drupal\manage_inventory;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\user\EntityOwnerInterface;
use Drupal\Core\Entity\EntityChangedInterface;
/**
* Provides an interface defining a Inventory entity.
* @ingroup manage_inventory
*/
interface InventoryInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment