CustomerMigratePropertyKeyLaravel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

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

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-2025
6
 */
7
8
9
namespace Aimeos\Upscheme\Task;
10
11
12
class CustomerMigratePropertyKeyLaravel extends TablesMigratePropertyKey
13
{
14
	protected function tables()
15
	{
16
		return [
17
			'db-customer' => 'users_property',
18
		];
19
	}
20
}
21