summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2013-08-05 00:44:14 -0400
committerDavid Rothstein <drothstein@gmail.com>2013-08-05 00:44:14 -0400
commitf58bc6af2477dc3cd136c7ef96cb354b819f6120 (patch)
treec76c9164844f848f9f2693a1b1f7ddd33feb4b5c /modules
parent1b0d6d22d336d23c0c3bb29cd0468a03ab3fbb4a (diff)
downloadbrdo-f58bc6af2477dc3cd136c7ef96cb354b819f6120.tar.gz
brdo-f58bc6af2477dc3cd136c7ef96cb354b819f6120.tar.bz2
Issue #1813966 by Sylvain Lecoy: Remove __construct() from interfaces definition.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.queue.inc13
1 files changed, 6 insertions, 7 deletions
diff --git a/modules/system/system.queue.inc b/modules/system/system.queue.inc
index 47d8e7cc3..901c4d6db 100644
--- a/modules/system/system.queue.inc
+++ b/modules/system/system.queue.inc
@@ -97,13 +97,6 @@ class DrupalQueue {
}
interface DrupalQueueInterface {
- /**
- * Start working with a queue.
- *
- * @param $name
- * Arbitrary string. The name of the queue to work with.
- */
- public function __construct($name);
/**
* Add a queue item and store it directly to the queue.
@@ -315,6 +308,12 @@ class MemoryQueue implements DrupalQueueInterface {
*/
protected $id_sequence;
+ /**
+ * Start working with a queue.
+ *
+ * @param $name
+ * Arbitrary string. The name of the queue to work with.
+ */
public function __construct($name) {
$this->queue = array();
$this->id_sequence = 0;