Completed
Branch master (3e10a5)
by Mathieu
02:33 queued 27s
created

MapFactory::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 8
rs 9.4285
cc 2
eloc 4
nc 2
nop 1
1
<?php
2
3
namespace Charcoal\Factory;
4
5
// Dependencies from `PHP`
6
use \InvalidArgumentException;
7
8
// Local namespace dependencies
9
use \Charcoal\Factory\AbstractFactory;
10
11
/**
12
 * The map Factory resolves the **class name** from an associative array with the **type** key.
13
 *
14
 */
15
class MapFactory extends AbstractFactory
16
{
17
18
}
19