Existable   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A exists() 0 3 1
1
<?php
2
3
namespace Isswp101\Persimmon\Concerns;
4
5
trait Existable
6
{
7
    private bool $exists = false;
8
9
    public function exists(): bool
10
    {
11
        return $this->exists;
12
    }
13
}
14