Skip to content

Commit

Permalink
remove lonely brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsCoding committed Jul 27, 2024
1 parent cd1cd7a commit a7540ab
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Xray\AzureStoragePhpSdk\BlobStorage\Resource;
use Xray\AzureStoragePhpSdk\Contracts\Http\{Request, Response};
use Xray\AzureStoragePhpSdk\Contracts\Manager;
use Xray\AzureStoragePhpSdk\Exceptions\{RequestException};
use Xray\AzureStoragePhpSdk\Exceptions\RequestException;

class PreflightBlobRequestManager implements Manager
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Xray\AzureStoragePhpSdk\BlobStorage\Resource;
use Xray\AzureStoragePhpSdk\Contracts\Http\Request;
use Xray\AzureStoragePhpSdk\Contracts\Manager;
use Xray\AzureStoragePhpSdk\Exceptions\{RequestException};
use Xray\AzureStoragePhpSdk\Exceptions\RequestException;

readonly class ContainerMetadataManager implements Manager
{
Expand Down
2 changes: 1 addition & 1 deletion src/BlobStorage/Managers/ContainerManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use Xray\AzureStoragePhpSdk\Concerns\HasRequestShared;
use Xray\AzureStoragePhpSdk\Contracts\Http\Request;
use Xray\AzureStoragePhpSdk\Contracts\{Manager, RequestShared};
use Xray\AzureStoragePhpSdk\Exceptions\{RequestException};
use Xray\AzureStoragePhpSdk\Exceptions\RequestException;

/**
* @phpstan-import-type ContainerType from Container
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Authentication/SharedKeyAuthTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Xray\AzureStoragePhpSdk\Authentication\SharedKeyAuth;
use Xray\AzureStoragePhpSdk\BlobStorage\Enums\HttpVerb;
use Xray\AzureStoragePhpSdk\BlobStorage\{Resource};
use Xray\AzureStoragePhpSdk\BlobStorage\Resource;
use Xray\AzureStoragePhpSdk\Contracts\Authentication\Auth;
use Xray\AzureStoragePhpSdk\Http\Headers;
use Xray\AzureStoragePhpSdk\Tests\Http\RequestFake;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Xray\AzureStoragePhpSdk\BlobStorage\Entities\Account\BlobStorageProperty\Cors\Cors;
use Xray\AzureStoragePhpSdk\BlobStorage\Entities\Account\BlobStorageProperty\{BlobProperty, DeleteRetentionPolicy, HourMetrics, Logging, MinuteMetrics, StaticWebsite};
use Xray\AzureStoragePhpSdk\BlobStorage\Managers\Account\StoragePropertyManager;
use Xray\AzureStoragePhpSdk\BlobStorage\{Resource};
use Xray\AzureStoragePhpSdk\BlobStorage\Resource;
use Xray\AzureStoragePhpSdk\Http\Response as BaseResponse;
use Xray\AzureStoragePhpSdk\Tests\Http\{RequestFake, ResponseFake};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Xray\AzureStoragePhpSdk\BlobStorage\Entities\Blob\BlobMetadata;
use Xray\AzureStoragePhpSdk\BlobStorage\Managers\Blob\BlobMetadataManager;
use Xray\AzureStoragePhpSdk\BlobStorage\{Resource};
use Xray\AzureStoragePhpSdk\BlobStorage\Resource;
use Xray\AzureStoragePhpSdk\Tests\Http\{RequestFake, ResponseFake};

uses()->group('blob-storage', 'managers', 'blobs');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use Xray\AzureStoragePhpSdk\BlobStorage\Enums\BlobType;
use Xray\AzureStoragePhpSdk\BlobStorage\Managers\Blob\{BlobManager, BlobPageManager};
use Xray\AzureStoragePhpSdk\BlobStorage\Resource;
use Xray\AzureStoragePhpSdk\BlobStorage\Resources\File;
use Xray\AzureStoragePhpSdk\BlobStorage\{Resource};
use Xray\AzureStoragePhpSdk\Exceptions\InvalidArgumentException;
use Xray\AzureStoragePhpSdk\Http\Response as BaseResponse;
use Xray\AzureStoragePhpSdk\Tests\Http\{RequestFake, ResponseFake};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Xray\AzureStoragePhpSdk\BlobStorage\Entities\Blob\BlobTag;
use Xray\AzureStoragePhpSdk\BlobStorage\Managers\Blob\BlobTagManager;
use Xray\AzureStoragePhpSdk\BlobStorage\{Resource};
use Xray\AzureStoragePhpSdk\BlobStorage\Resource;
use Xray\AzureStoragePhpSdk\Http\Response as BaseResponse;
use Xray\AzureStoragePhpSdk\Tests\Http\{RequestFake, ResponseFake};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Xray\AzureStoragePhpSdk\BlobStorage\Entities\Container\AccessLevel\{ContainerAccessLevel, ContainerAccessLevels};
use Xray\AzureStoragePhpSdk\BlobStorage\Managers\Container\ContainerAccessLevelManager;
use Xray\AzureStoragePhpSdk\BlobStorage\{Resource};
use Xray\AzureStoragePhpSdk\BlobStorage\Resource;
use Xray\AzureStoragePhpSdk\Tests\Http\{RequestFake, ResponseFake};

uses()->group('blob-storage', 'managers', 'containers');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Xray\AzureStoragePhpSdk\BlobStorage\Entities\Container\ContainerLease;
use Xray\AzureStoragePhpSdk\BlobStorage\Managers\Container\ContainerLeaseManager;
use Xray\AzureStoragePhpSdk\BlobStorage\{Resource};
use Xray\AzureStoragePhpSdk\BlobStorage\Resource;
use Xray\AzureStoragePhpSdk\Tests\Http\{RequestFake, ResponseFake};

uses()->group('blob-storage', 'managers', 'containers');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Xray\AzureStoragePhpSdk\BlobStorage\Entities\Container\ContainerMetadata;
use Xray\AzureStoragePhpSdk\BlobStorage\Managers\Container\ContainerMetadataManager;
use Xray\AzureStoragePhpSdk\BlobStorage\{Resource};
use Xray\AzureStoragePhpSdk\BlobStorage\Resource;
use Xray\AzureStoragePhpSdk\Exceptions\InvalidArgumentException;
use Xray\AzureStoragePhpSdk\Tests\Http\{RequestFake, ResponseFake};

Expand Down

0 comments on commit a7540ab

Please sign in to comment.