Passed
Push — master ( 4cae25...4a88c4 )
by Aimeos
17:26 queued 08:20
created

CustomerMigratePropertyKeyTypo3   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A tables() 0 4 1
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2022
6
 */
7
8
9
namespace Aimeos\Upscheme\Task;
10
11
12
class CustomerMigratePropertyKeyTypo3 extends TablesMigratePropertyKey
13
{
14
	protected function tables()
15
	{
16
		return [
17
			'db-customer' => 'fe_users_property',
18
		];
19
	}
20
}
21