Completed
Push — master ( e68c06...8ce3f9 )
by Adolfo
14s queued 11s
created

Group::getCode()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Sagitarius29\LaravelSubscriptions\Entities;
4
5
use Sagitarius29\LaravelSubscriptions\Contracts\PlanContract;
6
use Sagitarius29\LaravelSubscriptions\Contracts\GroupContract;
7
8
class Group implements GroupContract
9
{
10
    public function __construct($code = null)
11
    {
12
    }
13
14
    public function getCode(): string
15
    {
16
        // TODO: Implement getCode() method.
17
    }
18
19
    public function plans()
20
    {
21
        // TODO: Implement plans() method.
22
    }
23
24
    public function addPlan(PlanContract $plan): void
25
    {
26
        // TODO: Implement addPlan() method.
27
    }
28
29
    public function getDefaultPlan(): PlanContract
30
    {
31
        // TODO: Implement getDefaultPlan() method.
32
    }
33
}
34