Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| GraphQLElement | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace BO\Zmsclient\GraphQL; |
| 4 | |
| 5 | class GraphQLElement |
| 6 | { |
| 7 | protected $propertyName; |
| 8 | |
| 9 | public function __construct($propertyName = '__root') |
| 10 | { |
| 11 | $this->propertyName = $propertyName; |
| 12 | } |
| 13 | } |