diff --git a/src/Screen/AsSource.php b/src/Screen/AsSource.php index ae4aad9fe..1f3fcd197 100644 --- a/src/Screen/AsSource.php +++ b/src/Screen/AsSource.php @@ -26,7 +26,7 @@ public function getContent(string $field): mixed { // When field does not contain a dot, it is a simple field name. // And we not need to use cast model to array for this case. - if (!str_contains($field, '.')) { + if (! str_contains($field, '.')) { return $this->getAttribute($field); }