/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

  1. <?php
  2. /**
  3. * LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * PHP version 5
  15. *
  16. * @category Microsoft
  17. * @package WindowsAzure\ServiceBus
  18. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  19. * @copyright 2012 Microsoft Corporation
  20. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  21. * @link https://github.com/WindowsAzure/azure-sdk-for-php
  22. */
  23. namespace WindowsAzure\ServiceBus;
  24. use WindowsAzure\Common\Configuration;
  25. use WindowsAzure\Common\Internal\Resources;
  26. /**
  27. * Factory for creating WrapRestProxy objects
  28. *
  29. * @category Microsoft
  30. * @package WindowsAzure\ServiceBus
  31. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  32. * @copyright 2012 Microsoft Corporation
  33. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  34. * @version Release: @package_version@
  35. * @link https://github.com/WindowsAzure/azure-sdk-for-php
  36. */
  37. class WrapService
  38. {
  39. /**
  40. * Creates new object based on the builder type in the $config.
  41. *
  42. * @param WindowsAzure\Common\Configuration $config The config
  43. * object.
  44. * @param WindowsAzure\Common\Internal\IServicesBuilder $builder The builder
  45. * object.
  46. *
  47. * @return WindowsAzure\ServiceBus\WrapRestProxy
  48. */
  49. public static function create($config, $builder = null)
  50. {
  51. return $config->create(Resources::WRAP_TYPE_NAME, $builder);
  52. }
  53. }
  54. ?>