Passed
Push — dougall-pheobe-database-map-fi... ( ...2d7731 )
by
unknown
22:10
created

Session   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 8
rs 10
c 0
b 0
f 0
ccs 0
cts 2
cp 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A tableName() 0 3 1
1
<?php
2
3
namespace neon\user\models;
4
5
use neon\core\db\ActiveRecord;
6
7
/**
8
 */
9
class Session extends ActiveRecord
10
{
11
	/**
12
	 * @inheritdoc
13
	 */
14
	public static function tableName()
15
	{
16
		return '{{%user_session}}';
17
	}
18
}
19