CharsetAndCollationTrait::getCollation()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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