Passed
Push — 1.x ( 457fa0...308477 )
by Doug
03:11
created

ItemTooLargeException::getItem()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
/**
4
 * Box packing (3D bin packing, knapsack problem).
5
 *
6
 * @author Doug Wright
7
 */
8
namespace DVDoug\BoxPacker;
9
10
/**
11
 * Class ItemTooLargeException
12
 * Exception used when an item is too large to pack into any box.
13
 */
14
class ItemTooLargeException extends NoBoxesAvailableException
15
{
16
}
17