Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class ItemStatusUpdateResponse extends SIP2Response |
||
22 | { |
||
23 | //fixed part of response contains these |
||
24 | protected $var = [ |
||
25 | 'PropertiesOk' => [], |
||
26 | 'TransactionDate' => [], |
||
27 | ]; |
||
28 | |||
29 | //variable part of the response allowed to contain these... |
||
30 | protected $allowedVariables=[ |
||
31 | self::AB_ITEM_IDENTIFIER, |
||
32 | self::AJ_TITLE_IDENTIFIER, |
||
33 | self::CH_ITEM_PROPERTIES, |
||
34 | self::AF_SCREEN_MESSAGE, |
||
35 | self::AG_PRINT_LINE, |
||
36 | self::AY_SEQUENCE_NUMBER |
||
37 | ]; |
||
38 | |||
39 | 1 | public function __construct($raw) |
|
46 |