TestQueue   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
eloc 2
c 1
b 0
f 1
dl 0
loc 6
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 3 1
1
<?php declare(strict_types = 1);
2
3
namespace Portiny\RabbitMQ\Tests\Source;
4
5
use Portiny\RabbitMQ\Queue\AbstractQueue;
6
7
final class TestQueue extends AbstractQueue
8
{
9
10
	protected function getName(): string
11
	{
12
		return 'queueName';
13
	}
14
15
}
16