table::set_header()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 2
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 1
1
<?php
2
namespace phoponent\app\component\core\Table\mvc\view;
3
4
use phoponent\framework\traits\view;
5
6
    class table {
7
        use view;
8
9
        private $header = '';
10
        private $lines = '';
11
12
        public function set_header(string $header) {
13
        	$this->header = $header;
14
		}
15
16
        public function set_lines(string $lines) {
17
        	$this->lines = $lines;
18
		}
19
	}