Completed
Push — master ( 4b89b9...dd9abc )
by Jens
10:35
created

CartCollection::indexRow()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 2
Metric Value
dl 0
loc 9
ccs 6
cts 6
cp 1
rs 9.6666
cc 2
eloc 6
nc 2
nop 2
crap 2
1
<?php
2
/**
3
 * @author @jayS-de <[email protected]>
4
 */
5
6
namespace Commercetools\Core\Model\Cart;
7
8
use Commercetools\Core\Model\Common\Collection;
9
10
/**
11
 * @package Commercetools\Core\Model\Cart
12
 * @link https://dev.commercetools.com/http-api-projects-carts.html#cart
13
 * @method Cart current()
14
 * @method CartCollection add(Cart $element)
15
 * @method Cart getAt($offset)
16
 */
17
class CartCollection extends Collection
18
{
19
    protected $type = '\Commercetools\Core\Model\Cart\Cart';
20
}
21