for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bavix\Lexer;
class Queue extends \Bavix\Foundation\Arrays\Queue
{
/**
* @return mixed|null
*/
public function next()
$self = clone $this;
return $self->isEmpty() ?
null :
$self->pop();
}