CustomFieldChoiceCollection::offsetGet()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Date: 21/08/15
4
 */
5
6
namespace Mailxpert\Model;
7
8
/**
9
 * Class CustomFieldChoiceCollection
10
 * @package Mailxpert\Model
11
 */
12
class CustomFieldChoiceCollection extends ArrayCollection
13
{
14
    /**
15
     * @param mixed $offset
16
     *
17
     * @return CustomFieldChoice|null
18
     */
19
    public function offsetGet($offset)
20
    {
21
        return parent::offsetGet($offset);
22
    }
23
}
24