for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Spiral\Tests\Queue\Core\Stub;
use Spiral\Queue\OptionsInterface;
use Spiral\Queue\QueueInterface;
final class TestQueueClass implements QueueInterface
{
public function push(string $name, array $payload = [], OptionsInterface $options = null): string
return $name;
}