File tree 3 files changed +14
-24
lines changed
3 files changed +14
-24
lines changed Original file line number Diff line number Diff line change @@ -217,13 +217,6 @@ function cache_is_empty($bin) {
217
217
* @see DrupalDatabaseCache
218
218
*/
219
219
interface DrupalCacheInterface {
220
- /**
221
- * Constructs a new cache interface.
222
- *
223
- * @param $bin
224
- * The cache bin for which the object is created.
225
- */
226
- function __construct ($ bin );
227
220
228
221
/**
229
222
* Returns data from the persistent cache.
@@ -311,7 +304,10 @@ class DrupalDatabaseCache implements DrupalCacheInterface {
311
304
protected $ bin ;
312
305
313
306
/**
314
- * Constructs a new DrupalDatabaseCache object.
307
+ * Constructs a DrupalDatabaseCache object.
308
+ *
309
+ * @param $bin
310
+ * The cache bin for which the object is created.
315
311
*/
316
312
function __construct ($ bin ) {
317
313
$ this ->bin = $ bin ;
Original file line number Diff line number Diff line change 13
13
*/
14
14
interface DrupalEntityControllerInterface {
15
15
16
- /**
17
- * Constructor.
18
- *
19
- * @param $entityType
20
- * The entity type for which the instance is created.
21
- */
22
- public function __construct ($ entityType );
23
-
24
16
/**
25
17
* Resets the internal, static entity cache.
26
18
*
@@ -119,6 +111,9 @@ class DrupalDefaultEntityController implements DrupalEntityControllerInterface {
119
111
120
112
/**
121
113
* Constructor: sets basic variables.
114
+ *
115
+ * @param $entityType
116
+ * The entity type for which the instance is created.
122
117
*/
123
118
public function __construct ($ entityType ) {
124
119
$ this ->entityType = $ entityType ;
@@ -634,7 +629,7 @@ class EntityFieldQuery {
634
629
635
630
/**
636
631
* Adds a condition on field values.
637
- *
632
+ *
638
633
* Note that entities with empty field values will be excluded from the
639
634
* EntityFieldQuery results when using this method.
640
635
*
Original file line number Diff line number Diff line change @@ -97,13 +97,6 @@ class DrupalQueue {
97
97
}
98
98
99
99
interface DrupalQueueInterface {
100
- /**
101
- * Start working with a queue.
102
- *
103
- * @param $name
104
- * Arbitrary string. The name of the queue to work with.
105
- */
106
- public function __construct ($ name );
107
100
108
101
/**
109
102
* Add a queue item and store it directly to the queue.
@@ -315,6 +308,12 @@ class MemoryQueue implements DrupalQueueInterface {
315
308
*/
316
309
protected $ id_sequence ;
317
310
311
+ /**
312
+ * Start working with a queue.
313
+ *
314
+ * @param $name
315
+ * Arbitrary string. The name of the queue to work with.
316
+ */
318
317
public function __construct ($ name ) {
319
318
$ this ->queue = array ();
320
319
$ this ->id_sequence = 0 ;
You can’t perform that action at this time.
0 commit comments