-
-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
Description
Options:
-
Remove
count()method from queues -
Leave
count()and addCountableinterface:
class InMemoryQueue implements Queue, \Countable
{
...
public function count()
{
...
}
}- Put
count()into separate interface:
interface AdvancedQueue extends Queue, \Countable
{
public function slice($offset, $limit);
}