/WindowsAzure/ServiceBus/WrapService.php
http://github.com/WindowsAzure/azure-sdk-for-php · PHP · 58 lines · 12 code · 4 blank · 42 comment · 0 complexity · 3e87cd422a3950ba406ad06fe3aac96b MD5 · raw file
- <?php
- /**
- * LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * PHP version 5
- *
- * @category Microsoft
- * @package WindowsAzure\ServiceBus
- * @author Azure PHP SDK <azurephpsdk@microsoft.com>
- * @copyright 2012 Microsoft Corporation
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
- * @link https://github.com/WindowsAzure/azure-sdk-for-php
- */
-
- namespace WindowsAzure\ServiceBus;
- use WindowsAzure\Common\Configuration;
- use WindowsAzure\Common\Internal\Resources;
- /**
- * Factory for creating WrapRestProxy objects
- *
- * @category Microsoft
- * @package WindowsAzure\ServiceBus
- * @author Azure PHP SDK <azurephpsdk@microsoft.com>
- * @copyright 2012 Microsoft Corporation
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
- * @version Release: @package_version@
- * @link https://github.com/WindowsAzure/azure-sdk-for-php
- */
- class WrapService
- {
- /**
- * Creates new object based on the builder type in the $config.
- *
- * @param WindowsAzure\Common\Configuration $config The config
- * object.
- * @param WindowsAzure\Common\Internal\IServicesBuilder $builder The builder
- * object.
- *
- * @return WindowsAzure\ServiceBus\WrapRestProxy
- */
- public static function create($config, $builder = null)
- {
- return $config->create(Resources::WRAP_TYPE_NAME, $builder);
- }
- }
- ?>