Completed
Push — main ( cdec47...f822e5 )
by Emmanuel
01:08
created

Stats   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

7 Methods

Rating   Name   Duplication   Size   Complexity  
A total_orders() 0 3 1
A total_cancelled_orders() 0 3 1
A total_pending_orders() 0 3 1
A total_completed_orders() 0 3 1
A total_orders_today() 0 3 1
A total_orders_this_month() 0 3 1
A total_orders_this_year() 0 3 1
1
<?php
2
3
/**
4
 * Author: Emmanuel Paul Mnzava
5
 * Twitter: @epmnzava
6
 * Github: https://github.com/dbrax/bill-me
7
 * Email: [email protected]
8
 * 
9
 */
10
11
namespace Epmnzava\BillMe;
12
13
use Epmnzava\BillMe\Models\Order;
14
use Epmnzava\BillMe\Models\Invoice;
15
use Epmnzava\BillMe\Models\OrderItem;
16
use Epmnzava\BillMe\Mail\Client\Invoices\InvoiceCreated;
17
use Epmnzava\BillMe\Mail\Client\OrderReceived;
18
use Epmnzava\BillMe\Mail\Merchant\NewOrder;
19
20
use Mail;
21
22
class Stats 
23
{
24
25
    public function total_orders(){
26
27
    }
28
29
    public function total_cancelled_orders(){
30
31
    }
32
33
    public function total_pending_orders(){
34
35
    }
36
37
    public function total_completed_orders(){
38
39
    }
40
41
42
    public function total_orders_today(){
43
        
44
    }
45
46
    public function total_orders_this_month(){
47
        
48
    }
49
50
    public function total_orders_this_year(){
51
        
52
    }
53
54
55
    
56
}
57