Skip to content

Commit 3c8f33e

Browse files
binarykgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 8a4559f commit 3c8f33e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Fields/File.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,6 @@ public function fillAttribute(RestifyRequest $request, $model, ?int $bulkRow = n
286286
return $this;
287287
}
288288

289-
290289
if ($this->isPrunable()) {
291290
call_user_func(
292291
$this->deleteCallback,

src/MCP/Concerns/FieldMcpSchemaDetection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function getDescription(RestifyRequest $request, Repository $repository):
6565

6666
if ($description = data_get($this->jsonSchema()?->toArray(), 'description')) {
6767
if (is_string($description)) {
68-
return $description . ' ' . $partialDescription;
68+
return $description.' '.$partialDescription;
6969
}
7070
}
7171

@@ -93,7 +93,7 @@ public function getDescription(RestifyRequest $request, Repository $repository):
9393
}
9494
}
9595

96-
return $description . ' ' . $partialDescription;
96+
return $description.' '.$partialDescription;
9797
}
9898

9999
/**

0 commit comments

Comments
 (0)