Passed
Push — master ( e9c9be...dec7df )
by Derek Stephen
03:02
created

OfficialWebAppController   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 10
ccs 0
cts 7
cp 0
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A registerAction() 0 4 1
A indexAction() 0 2 1
1
<?php
2
3
namespace App\Controller;
4
5
use App\Form\User\RegistrationForm;
6
use Bone\Mvc\Controller;
7
8
class OfficialWebAppController extends Controller
9
{
10
    public function indexAction()
11
    {
12
13
    }
14
    public function registerAction()
15
    {
16
        $form = new RegistrationForm('register');
17
        $this->view->form = $form;
18
    }
19
}
20