Completed
Push — dependabot/composer/symfony/co... ( a51afd...d77574 )
by
unknown
137:27 queued 127:17
created

Visibility   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A public_method() 0 1 1
A protected_method() 0 1 1
A private_method() 0 1 1
1
<?php
2
class Visibility
3
{
4
    public const PUBLIC_CONST = 'foo';
5
    protected const PROTECTED_CONST = 'foo';
6
    private const PRIVATE_CONST = 'foo';
7
8
    public $public_prop = 'foo';
9
    protected $protected_prop = 'foo';
10
    private $private_prop = 'foo';
11
12
    public function public_method() {}
13
    protected function protected_method() {}
14
    private function private_method() {}
0 ignored issues
show
Unused Code introduced by
This method is not used, and could be removed.
Loading history...
15
}
16