Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
12 | public function __construct($objectClassName, $implementationClassName, $factoryClassName, $code) |
||
13 | { |
||
14 | parent::__construct( |
||
15 | 'Unable to create object of class "'.$objectClassName.'" in factory "'.$factoryClassName.'". '. |
||
16 | 'Implementation of "'.$implementationClassName.'" is missing.', |
||
17 | $code |
||
18 | ); |
||
20 | } |