Completed
Push — develop ( bf40a6...8921c9 )
by Adolfo
01:06
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
4
namespace Sagitarius29\LaravelSubscriptions\Entities;
5
6
7
use Sagitarius29\LaravelSubscriptions\Contracts\GroupContract;
8
use Sagitarius29\LaravelSubscriptions\Contracts\PlanContract;
9
10
class Group implements GroupContract
11
{
12
    public function __construct($code = null)
13
    {
14
    }
15
16
    public function getCode(): string
17
    {
18
        // TODO: Implement getCode() method.
19
    }
20
21
    public function plans()
22
    {
23
        // TODO: Implement plans() method.
24
    }
25
26
    public function addPlan(PlanContract $plan): void
27
    {
28
        // TODO: Implement addPlan() method.
29
    }
30
31
    public function getDefaultPlan(): PlanContract
32
    {
33
        // TODO: Implement getDefaultPlan() method.
34
    }
35
}
36