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

UsersNotifications   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
class UsersNotifications extends Notifications
6
{
7
    /**
8
     * Create a new Notification
9
     */
10
    public function create(Users $user, string $model, string $id, array $msg)
11
    {
12
    }
13
14
    /**
15
     * Send Notification
16
     */
17
    public function send()
18
    {
19
    }
20
}
21