<?php
/**
 * Created by PhpStorm.
 * User: vamoose
 * Date: 2016/11/28
 * Time: 9:31 AM
 */

namespace EONConsulting\PHPStencil\src\Factories\WebService;

/**
 * Class WebServiceEnum
 * @package EONConsulting\PHPStencil\src\Factories\WebService
 */
class WebServiceEnum {

    const REST = 'REST';
    const SOAP = 'SOAP';

    /**
     * carry on the sequence if you need to add more WEB SERVICE TYPES here...
     */

    // const NEW_TYPE = 'NEW_TYPE';

}
