next try to stick to the column length :/
All checks were successful
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/1 Pipeline was successful
ci/woodpecker/push/functional-tests/3 Pipeline was successful
ci/woodpecker/push/functional-tests/2 Pipeline was successful

This commit is contained in:
Ferdinand Kuhl 2024-06-27 21:27:38 +02:00
parent e94b044d3a
commit 2119e62bbb

View file

@ -62,9 +62,9 @@ class AssetAttribute
$this->value = $value;
}
if (!$urlValue) {
$urlValue = \mb_substr($this->value, 0, 250);
$urlValue = $this->value;
}
$this->urlValue = $urlValue;
$this->urlValue = \mb_substr($urlValue, 0, 250) ;
}
public function initializeObject(): void