Skip to content

Commit 565d0df

Browse files
alshabalinasmyasnikov
authored andcommitted
namespace updated
1 parent cd23bed commit 565d0df

13 files changed

+31
-31
lines changed

src/Cluster.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace YandexCloud\Ydb;
3+
namespace YdbPlatform\Ydb;
44

55
class Cluster
66
{

src/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace YandexCloud\Ydb;
3+
namespace YdbPlatform\Ydb;
44

55
class Connection
66
{

src/Discovery.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace YandexCloud\Ydb;
3+
namespace YdbPlatform\Ydb;
44

55
use Psr\Log\LoggerInterface;
66
use Ydb\Discovery\V1\DiscoveryServiceClient as ServiceClient;
@@ -76,7 +76,7 @@ public function whoAmI()
7676
* @param string $method
7777
* @param array $data
7878
* @return bool|mixed|void|null
79-
* @throws \YandexCloud\Ydb\Exception
79+
* @throws \YdbPlatform\Ydb\Exception
8080
*/
8181
protected function request($method, array $data = [])
8282
{

src/Exception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace YandexCloud\Ydb;
3+
namespace YdbPlatform\Ydb;
44

55
use Exception as BaseException;
66

src/Iam.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

3-
namespace YandexCloud\Ydb;
3+
namespace YdbPlatform\Ydb;
44

55
use DateTime;
66
use Lcobucci\JWT;
77
use DateTimeImmutable;
88
use Grpc\ChannelCredentials;
99
use Psr\Log\LoggerInterface;
10-
use YandexCloud\Ydb\Jwt\Signer\Sha256;
11-
use YandexCloud\Ydb\Contracts\IamTokenContract;
10+
use YdbPlatform\Ydb\Jwt\Signer\Sha256;
11+
use YdbPlatform\Ydb\Contracts\IamTokenContract;
1212

1313
class Iam implements IamTokenContract
1414
{

src/Issue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace YandexCloud\Ydb;
3+
namespace YdbPlatform\Ydb;
44

55
use Ydb\Issue\IssueMessage;
66

src/Operations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace YandexCloud\Ydb;
3+
namespace YdbPlatform\Ydb;
44

55
use Psr\Log\LoggerInterface;
66
use Ydb\Operations\V1\OperationServiceClient as ServiceClient;

src/QueryResult.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace YandexCloud\Ydb;
3+
namespace YdbPlatform\Ydb;
44

55
class QueryResult
66
{

src/Scheme.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace YandexCloud\Ydb;
3+
namespace YdbPlatform\Ydb;
44

55
use Psr\Log\LoggerInterface;
66
use Ydb\Scheme\Permissions;
@@ -153,7 +153,7 @@ protected function permissionAction($actions, $key)
153153
* @param string $method
154154
* @param array $data
155155
* @return bool|mixed|void|null
156-
* @throws \YandexCloud\Ydb\Exception
156+
* @throws \YdbPlatform\Ydb\Exception
157157
*/
158158
protected function request($method, array $data = [])
159159
{

src/Scripting.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace YandexCloud\Ydb;
3+
namespace YdbPlatform\Ydb;
44

55
use Psr\Log\LoggerInterface;
66
use Ydb\Scripting\V1\ScriptingServiceClient as ServiceClient;
@@ -44,7 +44,7 @@ public function __construct(Ydb $ydb, LoggerInterface $logger = null)
4444
/**
4545
* @param string $script
4646
* @return bool|QueryResult
47-
* @throws \YandexCloud\Ydb\Exception
47+
* @throws \YdbPlatform\Ydb\Exception
4848
*/
4949
public function exec($script)
5050
{
@@ -72,7 +72,7 @@ public function explain($script)
7272
* @param string $method
7373
* @param array $data
7474
* @return bool|mixed|void|null
75-
* @throws \YandexCloud\Ydb\Exception
75+
* @throws \YdbPlatform\Ydb\Exception
7676
*/
7777
protected function request($method, array $data = [])
7878
{

0 commit comments

Comments
 (0)