Conditions | 1 |
Paths | 1 |
Total Lines | 20 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
28 | public function __construct(FullyQualified $prefixedName, FullyQualified $originalName, array $attributes = []) |
||
29 | { |
||
30 | parent::__construct( |
||
31 | new FullyQualified('class_alias'), |
||
32 | [ |
||
33 | new Arg( |
||
34 | new String_((string) $prefixedName) |
||
35 | ), |
||
36 | new Arg( |
||
37 | new String_((string) $originalName) |
||
38 | ), |
||
39 | new Arg( |
||
40 | new ConstFetch( |
||
41 | new FullyQualified('false') |
||
42 | ) |
||
43 | ), |
||
44 | ], |
||
45 | $attributes |
||
46 | ); |
||
47 | } |
||
48 | } |
||
49 |