Skip to content

Commit 7b111f5

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents bb7232e + 229dd7b commit 7b111f5

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to `inspirecms-core` will be documented in this file.
44

5+
## 0.0.52 - 2025-05-13
6+
7+
### What's Changed
8+
9+
* Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 by @dependabot in https://github.com/solutionforest/Inspirecms-core/pull/4
10+
11+
**Full Changelog**: https://github.com/solutionforest/Inspirecms-core/compare/0.0.51...0.0.52
12+
513
## 0.0.51 - 2025-05-08
614

715
**Full Changelog**: https://github.com/solutionforest/Inspirecms-core/compare/0.0.50...0.0.51

src/Fields/Dtos/FileDto.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@ class FileDto extends BaseDto
2525
public function getFullPath()
2626
{
2727
$fs = filled($this->disk) ? Storage::disk($this->disk) : Storage::getDriver();
28+
2829
return $fs->path($this->path);
2930
}
3031

3132
public function getUrl(): ?string
3233
{
3334
$fs = filled($this->disk) ? Storage::disk($this->disk) : Storage::getDriver();
35+
3436
return $fs->url($this->path);
3537
}
3638

0 commit comments

Comments
 (0)