Completed
Push — master ( 52e9e1...4faf8b )
by Matt
9s
created

mysql4   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A get_name() 0 4 1
1
<?php
2
/**
3
 *
4
 * Precise Similar Topics
5
 *
6
 * @copyright (c) 2018 Matt Friedman
7
 * @license GNU General Public License, version 2 (GPL-2.0)
8
 *
9
 */
10
11
namespace vse\similartopics\driver;
12
13
/**
14
 * This class handles similar topics queries for MySQL dbms
15
 */
16
class mysql4 extends mysqli
17
{
18
	/**
19
	 * {@inheritdoc}
20
	 */
21
	public function get_name()
22
	{
23
		return 'mysql4';
24
	}
25
}
26