File "deleteAwb.php"

Full path: /home/kosmetik/public_html/api/fan_courier/sursa/deleteAwb.php
File size: 494 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

/**
 * @file
 * Contains \FanCourier\Endpoint\deleteAwb.
 */

namespace FanCourier\Endpoint;

use FanCourier\Endpoint\Endpoint;

/**
 * Controller for FanCourier delete AWB.
 *
 * @author [email protected]
 */
class deleteAwb extends Endpoint {

  /**
   * Endpoint url.
   *
   * @var string 
   */
  protected $url = 'https://www.selfawb.ro/delete_awb_integrat.php';

  /**
   * Construct setups.
   */
  public function __construct() {
    $this->setRequirements(['AWB']);
  }

}