Main   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 5
dl 0
loc 6
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A render() 0 5 1
1
<?php
2
namespace phoponent\app\component\custom;
3
4
	class Main extends \phoponent\app\component\core\Main {
5
        public function render():string {
6
        	return $this->get_view('Main')
7
						->set_vars([
8
							'title' => $this->attribute('title')
9
						])->render();
10
        }
11
    }