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

ProxyStub::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
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
}