Completed
Pull Request — master (#366)
by Beñat
04:48
created

NotificationFinder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A all() 0 7 1
1
<?php
2
3
/*
4
 * This file is part of the Kreta package.
5
 *
6
 * (c) Beñat Espiña <[email protected]>
7
 * (c) Gorka Laucirica <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
declare(strict_types=1);
14
15
namespace Kreta\Notifier\Infrastructure\Projection\Finder\Inbox;
16
17
class NotificationFinder
18
{
19
    public function all()
20
    {
21
        // en esta clase no se como hacerlo, si un finder que haga de factory
22
        // de los query handlers o no
23
        // lo unico que esta claro es que desde este tipo de metodos hay que buscar en la tabla notification_projection
24
        // que es la que alimentan los projectors
25
    }
26
}
27