Completed
Push — master ( 480c88...01d8db )
by Valentin
08:43
created

ProxyStub   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 4
lcom 0
cbo 0
dl 0
loc 30
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __loaded() 0 3 1
A __role() 0 3 1
A __scope() 0 3 1
A __resolve() 0 3 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Cycle\ORM\Promise\Example;
5
6
use Cycle\ORM\Promise\PromiseInterface;
7
8
class ProxyStub implements PromiseInterface
9
{
10
    /**
11
     * {@inheritdoc}
12
     */
13
    public function __loaded(): bool
14
    {
15
    }
16
17
    /**
18
     * {@inheritdoc}
19
     */
20
    public function __role(): string
21
    {
22
    }
23
24
    /**
25
     * {@inheritdoc}
26
     */
27
    public function __scope(): array
28
    {
29
    }
30
31
    /**
32
     * {@inheritdoc}
33
     */
34
    public function __resolve()
35
    {
36
    }
37
}