Skip to content

Commit

Permalink
Add newline after variable
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Dec 27, 2022
1 parent e9898d0 commit c0a7825
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,10 @@ protected function createDetailTemplate(): void
</div>
</article>
</main>
@endsection
BLADE;

$this->savePublicationFile("{$this->detailTemplateName()}.blade.php", $contents);
$this->savePublicationFile("{$this->detailTemplateName()}.blade.php", "$contents\n");
}

protected function createListTemplate(): void
Expand All @@ -121,11 +120,10 @@ protected function createListTemplate(): void
</ol>
</div>
</main>
@endsection
BLADE;

$this->savePublicationFile("{$this->listTemplateName()}.blade.php", $contents);
$this->savePublicationFile("{$this->listTemplateName()}.blade.php", "$contents\n");
}

protected function savePublicationFile(string $filename, string $contents): int
Expand Down

0 comments on commit c0a7825

Please sign in to comment.