CharsetAndCollationTrait   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getCharset() 0 3 1
A setCharset() 0 3 1
A getCollation() 0 3 1
A setCollation() 0 3 1
1
<?php
2
3
namespace donatj\MySqlSchema\Traits;
4
5
trait CharsetAndCollationTrait {
6
7
8
	protected $charset = null;
9
10
	protected $collation = null;
11
12
	/**
13
	 * @return null
14
	 */
15
	public function getCharset() {
16
		return $this->charset;
17
	}
18
19
	/**
20
	 * @param null $charset
21
	 */
22
	public function setCharset( $charset ) {
23
		$this->charset = $charset;
24
	}
25
26
	/**
27
	 * @return null
28
	 */
29
	public function getCollation() {
30
		return $this->collation;
31
	}
32
33
	/**
34
	 * @param null $collation
35
	 */
36
	public function setCollation( $collation ) {
37
		$this->collation = $collation;
38
	}
39
}
40