table   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 6
dl 0
loc 12
c 0
b 0
f 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A set_lines() 0 2 1
A set_header() 0 2 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
	}