Skip to content

Commit

Permalink
refactor: Break long line
Browse files Browse the repository at this point in the history
  • Loading branch information
linkdotnet committed Dec 15, 2023
1 parent aefca91 commit 02dfd95
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/LinkDotNet.Blog.Web/Controller/RssFeedController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ public sealed class RssFeedController : ControllerBase
private readonly string blogName;
private readonly IRepository<BlogPost> blogPostRepository;

public RssFeedController(IOptions<Introduction> introductionConfiguration,IOptions<ApplicationConfiguration> applicationConfiguration, IRepository<BlogPost> blogPostRepository)
public RssFeedController(
IOptions<Introduction> introductionConfiguration,
IOptions<ApplicationConfiguration> applicationConfiguration,
IRepository<BlogPost> blogPostRepository)
{
ArgumentNullException.ThrowIfNull(introductionConfiguration);
ArgumentNullException.ThrowIfNull(applicationConfiguration);
Expand Down

0 comments on commit 02dfd95

Please sign in to comment.