Last active
July 4, 2016 19:30
-
-
Save adityaanurag/6406e60f85d8d76845014816c7e5a449 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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