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