ContainerIsEmptyException::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 4
crap 1
1
<?php
2
namespace GenericCollections\Exceptions;
3
4
class ContainerIsEmptyException extends GenericCollectionsException
5
{
6
    /**
7
     * ContainerIsEmptyException constructor.
8
     *
9
     * @param string $container
10
     * @param int $action
11
     * @param int $code
12
     * @param \Exception|null $previous
13
     */
14 6
    public function __construct($container, $action, $code = 0, \Exception $previous = null)
15
    {
16 6
        $message = "Can not $action an element from an empty $container";
17 6
        parent::__construct($message, $code, $previous);
18 6
    }
19
}
20