Blame view
sources/apps/files_external/3rdparty/php-opencloud/lib/php-opencloud.php
403 Bytes
|
31b7f2792
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<?php /** * entry point for PHP-OpenCloud library * * @copyright 2013 Rackspace Hosting, Inc. * @license http://www.apache.org/licenses/LICENSE-2.0 */ require_once(__DIR__ . '/Autoload.php'); require_once(__DIR__ . '/OpenCloud/Globals.php'); $classLoader = new ClassLoader; $classLoader->registerNamespaces(array( 'OpenCloud' => array(__DIR__, __DIR__ . '/../tests') )); $classLoader->register(); |