Skip to content

Commit a73bf25

Browse files
committed
rename Api to Routes
1 parent c413924 commit a73bf25

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Pdsinterop\PhpSolid\Api;
2+
namespace Pdsinterop\PhpSolid\Routes;
33

44
use Pdsinterop\PhpSolid\Server;
55
use Pdsinterop\PhpSolid\ClientRegistration;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Pdsinterop\PhpSolid\Api;
2+
namespace Pdsinterop\PhpSolid\Routes;
33

44
use Pdsinterop\PhpSolid\Server;
55
use Pdsinterop\PhpSolid\ClientRegistration;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Pdsinterop\PhpSolid\Api;
2+
namespace Pdsinterop\PhpSolid\Routes;
33

44
use Pdsinterop\PhpSolid\StorageServer;
55
use Pdsinterop\PhpSolid\ClientRegistration;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Pdsinterop\PhpSolid\Api;
2+
namespace Pdsinterop\PhpSolid\Routes;
33

44
use Pdsinterop\PhpSolid\User;
55

www/idp/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
require_once(__DIR__ . "/../../vendor/autoload.php");
88

99
use Pdsinterop\PhpSolid\Middleware;
10-
use Pdsinterop\PhpSolid\Api\Account;
11-
use Pdsinterop\PhpSolid\Api\SolidIdp;
10+
use Pdsinterop\PhpSolid\Routes\Account;
11+
use Pdsinterop\PhpSolid\Routes\SolidIdp;
1212

1313
use Pdsinterop\PhpSolid\User;
1414
use Pdsinterop\PhpSolid\IpAttempts;

www/user/profile.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
require_once(__DIR__ . "/../../vendor/autoload.php");
77

88
use Pdsinterop\PhpSolid\Middleware;
9-
use Pdsinterop\PhpSolid\Api\SolidUserProfile;
9+
use Pdsinterop\PhpSolid\Routes\SolidUserProfile;
1010

1111
$request = explode("?", $_SERVER['REQUEST_URI'], 2)[0];
1212
$method = $_SERVER['REQUEST_METHOD'];

www/user/storage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
require_once(__DIR__ . "/../../vendor/autoload.php");
77

88
use Pdsinterop\PhpSolid\Middleware;
9-
use Pdsinterop\PhpSolid\Api\SolidStorage;
9+
use Pdsinterop\PhpSolid\Routes\SolidStorage;
1010

1111
$method = $_SERVER['REQUEST_METHOD'];
1212

0 commit comments

Comments
 (0)