Upgrade to 3.8.0

This commit is contained in:
Bastian Allgeier
2022-10-06 10:11:54 +02:00
parent a9ed4e45ca
commit 7d168aae58
332 changed files with 26337 additions and 21977 deletions

View File

@@ -26,29 +26,21 @@ trait IsFile
/**
* File asset object
*
* @var \Kirby\Filesystem\File
*/
protected $asset;
protected File|null $asset = null;
/**
* Absolute file path
*
* @var string|null
*/
protected $root;
protected string|null $root = null;
/**
* Absolute file URL
*
* @var string|null
*/
protected $url;
protected string|null $url = null;
/**
* Constructor sets all file properties
*
* @param array $props
*/
public function __construct(array $props)
{
@@ -58,9 +50,6 @@ trait IsFile
/**
* Magic caller for asset methods
*
* @param string $method
* @param array $arguments
* @return mixed
* @throws \Kirby\Exception\BadMethodCallException
*/
public function __call(string $method, array $arguments = [])
@@ -80,8 +69,6 @@ trait IsFile
/**
* Converts the asset to a string
*
* @return string
*/
public function __toString(): string
{
@@ -90,33 +77,29 @@ trait IsFile
/**
* Returns the file asset object
*
* @param array|string|null $props
* @return \Kirby\Filesystem\File
*/
public function asset($props = null)
public function asset(array|string|null $props = null): File
{
if ($this->asset !== null) {
return $this->asset;
}
$props = $props ?? [
'root' => $this->root(),
'url' => $this->url()
];
$props ??= [];
switch ($this->type()) {
case 'image':
return $this->asset = new Image($props);
default:
return $this->asset = new File($props);
if (is_string($props) === true) {
$props = ['root' => $props];
}
$props['model'] ??= $this;
return $this->asset = match ($this->type()) {
'image' => new Image($props),
default => new File($props)
};
}
/**
* Checks if the file exists on disk
*
* @return bool
*/
public function exists(): bool
{
@@ -126,23 +109,29 @@ trait IsFile
return file_exists($this->root()) === true;
}
/**
* To check the existence of the IsFile trait
*
* @todo Switch to class constant in traits when min PHP version 8.2 required
* @codeCoverageIgnore
*/
protected function hasIsFileTrait(): bool
{
return true;
}
/**
* Returns the app instance
*
* @return \Kirby\Cms\App
*/
public function kirby()
public function kirby(): App
{
return App::instance();
}
/**
* Returns the given file path
*
* @return string|null
*/
public function root(): ?string
public function root(): string|null
{
return $this->root;
}
@@ -150,10 +139,9 @@ trait IsFile
/**
* Setter for the root
*
* @param string|null $root
* @return $this
*/
protected function setRoot(?string $root = null)
protected function setRoot(string|null $root = null): static
{
$this->root = $root;
return $this;
@@ -162,10 +150,9 @@ trait IsFile
/**
* Setter for the file url
*
* @param string|null $url
* @return $this
*/
protected function setUrl(?string $url = null)
protected function setUrl(string|null $url = null): static
{
$this->url = $url;
return $this;
@@ -173,10 +160,8 @@ trait IsFile
/**
* Returns the file type
*
* @return string|null
*/
public function type(): ?string
public function type(): string|null
{
// Important to include this in the trait
// to avoid infinite loops when trying
@@ -186,10 +171,8 @@ trait IsFile
/**
* Returns the absolute url for the file
*
* @return string|null
*/
public function url(): ?string
public function url(): string|null
{
return $this->url;
}