1: <?php 2: 3: namespace mcfedr\Paypal\Notifications; 4: 5: class CartChangeNotification extends CartNotification { 6: 7: public function __construct($vars) { 8: parent::__construct($vars); 9: $this->type = static::REFUND; 10: } 11: 12: } 13: