blob: 548678aa11506a5d0b016bee332c3c6f8898efa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/*
* Bootstrap the library.
*/
namespace OAuth;
require_once __DIR__ . '/Common/AutoLoader.php';
$autoloader = new Common\AutoLoader(__NAMESPACE__, dirname(__DIR__));
$autoloader->register();
|