ProfilePresenter   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
eloc 1
c 1
b 0
f 1
dl 0
loc 2
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A actionDefault() 0 1 1
1
<?php
2
declare(strict_types=1);
3
4
namespace HeroesofAbenez\Chat;
5
6
final class ProfilePresenter extends \Nette\Application\UI\Presenter {
7
  public function actionDefault(int $id): void {
8
  }
9
}
10
?>