Accounts   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getAccounts() 0 4 1
1
<?php
2
3
namespace Thepixeldeveloper\Mondo\Response;
4
5
use JMS\Serializer\Annotation as JMS;
6
7
/**
8
 * Class Accounts
9
 *
10
 * @package Thepixeldeveloper\Mondo\Response
11
 */
12
class Accounts
13
{
14
    /**
15
     * @var Accounts\Account[]
16
     * @JMS\Type("array<Thepixeldeveloper\Mondo\Response\Account>")
17
     */
18
    protected $accounts = [];
19
20
    /**
21
     * @return Accounts\Account[]
22
     */
23
    public function getAccounts()
24
    {
25
        return $this->accounts;
26
    }
27
}
28