Passed
Push — master ( fd0a2b...59e2d0 )
by Aimeos
08:36
created

CustomerClearPropertyKeyLaravel   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 6
rs 10
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
6
 */
7
8
9
namespace Aimeos\Upscheme\Task;
10
11
12
class CustomerClearPropertyKeyLaravel extends TablesMigratePropertyKey
13
{
14
	protected function tables()
15
	{
16
		return [
17
			'db-customer' => 'users_property',
18
		];
19
	}
20
}
21