Skip to content

Commit

Permalink
fix bc
Browse files Browse the repository at this point in the history
  • Loading branch information
brecht.vermeersch committed Jul 24, 2024
1 parent 2b3f7d4 commit ed89a82
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Blob/Models/Blob.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

final class Blob
{
private function __construct(
public function __construct(
public readonly string $name,
public readonly BlobProperties $properties,
) {}
Expand Down
2 changes: 1 addition & 1 deletion src/Blob/Models/BlobContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

final class BlobContainer
{
private function __construct(
public function __construct(
public readonly string $name,
public readonly BlobContainerProperties $properties,
) {}
Expand Down
2 changes: 1 addition & 1 deletion src/Blob/Models/BlobProperties.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ final class BlobProperties
/**
* @param array<string, string> $metadata
*/
private function __construct(
public function __construct(
public readonly \DateTimeInterface $lastModified,
public readonly int $contentLength,
public readonly string $contentType,
Expand Down

0 comments on commit ed89a82

Please sign in to comment.