Skip to content

Commit

Permalink
Lint code [WEB-2934]
Browse files Browse the repository at this point in the history
  • Loading branch information
web-dev-trev committed Dec 19, 2024
1 parent 6a6be3f commit 69eefb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Console/Commands/AI/AnalyzeAllArtworks.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ protected function buildImageUrl(Artwork $artwork): string
}

return sprintf(
config('aic.config_documentation.iiif_url').'/%s/full/full/0/default.jpg',
config('aic.config_documentation.iiif_url') . '/%s/full/full/0/default.jpg',
$artwork->getImageAttribute()->netx_uuid
);
}
Expand Down
2 changes: 1 addition & 1 deletion app/Console/Commands/AI/AnalyzeImage.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected function buildImageUrl(Artwork $artwork): string
}

return sprintf(
config('aic.config_documentation.iiif_url').'/%s/full/full/0/default.jpg',
config('aic.config_documentation.iiif_url') . '/%s/full/full/0/default.jpg',
$artwork->getImageAttribute()->netx_uuid
);
}
Expand Down

0 comments on commit 69eefb7

Please sign in to comment.