Completed
Push — master ( cb16cf...f129a6 )
by Tomáš
05:41
created

getConfigFile()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
nc 1
cc 1
eloc 2
nop 0
1
<?php declare(strict_types = 1);
2
3
namespace TomCizek\SymfonyProoph\Tests\AsynchronousMessages;
4
5
class AsynchronousCommandProducerConfiguratorTest extends AbstractAsynchronousProducerConfiguratorTestCase
6
{
7
	const FIXTURE_CONFIG_FILE = 'AsynchronousMessages/AsynchronousCommandProducerTest.yml';
8
	const EXPECTED_SERVICE_NAME = 'prooph.asynchronous_messaging.commands';
9
10
	protected function getConfigFile()
11
	{
12
		return self::FIXTURE_CONFIG_FILE;
13
	}
14
15
	protected function getExpectedServiceName()
16
	{
17
		return self::EXPECTED_SERVICE_NAME;
18
	}
19
}
20