Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
CRAP | ||||||
| Delivery | |
100.00% |
1 / 1 |
0 | ||||||
| <?php | |
| /** | |
| * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl> | |
| */ | |
| namespace Team3\PayU\Order\Model\Buyer; | |
| use JMS\Serializer\Annotation as JMS; | |
| use Team3\PayU\Order\Model\Traits\AddressTrait; | |
| /** | |
| * Class Delivery | |
| * @package Team3\PayU\Order\Model\Buyer | |
| * @JMS\AccessorOrder("alphabetical") | |
| */ | |
| class Delivery implements DeliveryInterface | |
| { | |
| use AddressTrait; | |
| } |