summaryrefslogtreecommitdiff
path: root/includes/entity.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/entity.inc')
-rw-r--r--includes/entity.inc13
1 files changed, 4 insertions, 9 deletions
diff --git a/includes/entity.inc b/includes/entity.inc
index 2fefd5904..25f75846c 100644
--- a/includes/entity.inc
+++ b/includes/entity.inc
@@ -14,14 +14,6 @@
interface DrupalEntityControllerInterface {
/**
- * Constructor.
- *
- * @param $entityType
- * The entity type for which the instance is created.
- */
- public function __construct($entityType);
-
- /**
* Resets the internal, static entity cache.
*
* @param $ids
@@ -119,6 +111,9 @@ class DrupalDefaultEntityController implements DrupalEntityControllerInterface {
/**
* Constructor: sets basic variables.
+ *
+ * @param $entityType
+ * The entity type for which the instance is created.
*/
public function __construct($entityType) {
$this->entityType = $entityType;
@@ -634,7 +629,7 @@ class EntityFieldQuery {
/**
* Adds a condition on field values.
- *
+ *
* Note that entities with empty field values will be excluded from the
* EntityFieldQuery results when using this method.
*