Skip to content

Commit 25379d3

Browse files
authored
Merge pull request #11 from tomshaw/release-please--branches--master
chore(master): release 0.7.2
2 parents 5a39261 + aadd479 commit 25379d3

10 files changed

+16
-21
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.7.2](https://github.com/tomshaw/mediable/compare/v0.7.1...v0.7.2) (2025-03-08)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* minor adjustments, bump version to 0.7.2 ([5a39261](https://github.com/tomshaw/mediable/commit/5a39261442615c1a7213205b7b0a80a77e23588e))
9+
310
## [0.7.1](https://github.com/tomshaw/mediable/compare/v0.7.0...v0.7.1) (2025-03-06)
411

512

src/Concerns/AlertState.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ public function __construct(
1010
public bool $show = false,
1111
public string $type = '',
1212
public string $message = ''
13-
) {
14-
}
13+
) {}
1514

1615
public function toLivewire()
1716
{

src/Concerns/AttachmentState.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ public function __construct(
2424
public ?bool $hidden = false,
2525
public ?string $created_at = null,
2626
public ?string $updated_at = null
27-
) {
28-
}
27+
) {}
2928

3029
public static function fromAttachment(Attachment $attachment): self
3130
{

src/Concerns/ModalState.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ final class ModalState implements Wireable
99
public function __construct(
1010
public bool $show = false,
1111
public string $elementId = ''
12-
) {
13-
}
12+
) {}
1413

1514
public function toLivewire()
1615
{

src/Concerns/PanelState.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ public function __construct(
1212
public bool $uploadMode = false,
1313
public bool $editorMode = false,
1414
public bool $formMode = false
15-
) {
16-
}
15+
) {}
1716

1817
public function isThumbMode(): bool
1918
{

src/Concerns/ShowState.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ public function __construct(
2121
public bool $showImageStrip = true,
2222
public bool $showMetaInfo = true,
2323
public bool $showAppStats = true,
24-
) {
25-
}
24+
) {}
2625

2726
public function isShowPagination(): bool
2827
{

src/Eloquent/EloquentManager.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ class EloquentManager
1818
{
1919
public function __construct(
2020
public Builder $query,
21-
) {
22-
}
21+
) {}
2322

2423
public function load(int $id)
2524
{

src/Exceptions/MediaBrowserException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,4 @@
44

55
use RuntimeException;
66

7-
final class MediaBrowserException extends RuntimeException
8-
{
9-
}
7+
final class MediaBrowserException extends RuntimeException {}

src/Exceptions/MediaExtensionException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,4 @@
44

55
use RuntimeException;
66

7-
final class MediaExtensionException extends RuntimeException
8-
{
9-
}
7+
final class MediaExtensionException extends RuntimeException {}

src/Exceptions/MediaSourceException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,4 @@
44

55
use RuntimeException;
66

7-
final class MediaSourceException extends RuntimeException
8-
{
9-
}
7+
final class MediaSourceException extends RuntimeException {}

0 commit comments

Comments
 (0)