Passed
Pull Request — master (#67)
by Rafael
04:52
created

Notifications   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 14
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A create() 0 2 1
A send() 0 2 1
1
<?php
2
3
namespace Gewaer\Notifications;
4
5
use Gewaer\Contracts\INotifications;
6
7
class Notifications implements INotifications
8
{
9
    /**
10
     * Create a new Notification
11
     */
12
    public function create(Users $user, string $model, string $id, array $msg)
13
    {
14
    }
15
16
    /**
17
     * Send Notification
18
     */
19
    public function send()
20
    {
21
    }
22
}
23