@@ -49,7 +49,7 @@ public function itReturnsMixedResultsForADirectoryWithInvalidSkillMdFiles(): voi
4949
5050 $ validDirectory = $ this ->temporaryDirectory . DIRECTORY_SEPARATOR . 'release-notes ' ;
5151 \mkdir ($ validDirectory );
52- \file_put_contents ($ validDirectory . DIRECTORY_SEPARATOR . 'SKILL.md ' , <<<' MARKDOWN'
52+ \file_put_contents ($ validDirectory . DIRECTORY_SEPARATOR . 'SKILL.md ' , <<<MARKDOWN
5353---
5454name: release-notes
5555description: Generate release notes from a changelog and commit history.
@@ -62,7 +62,7 @@ public function itReturnsMixedResultsForADirectoryWithInvalidSkillMdFiles(): voi
6262
6363 $ invalidDirectory = $ this ->temporaryDirectory . DIRECTORY_SEPARATOR . 'broken-skill ' ;
6464 \mkdir ($ invalidDirectory );
65- \file_put_contents ($ invalidDirectory . DIRECTORY_SEPARATOR . 'SKILL.md ' , <<<' MARKDOWN'
65+ \file_put_contents ($ invalidDirectory . DIRECTORY_SEPARATOR . 'SKILL.md ' , <<<MARKDOWN
6666# Missing frontmatter
6767
6868This skill has no YAML frontmatter.
@@ -105,7 +105,7 @@ public function itDelegatesToValidateFromDirectoryWhenInputIsADirectoryPath(): v
105105
106106 $ skillDirectory = $ this ->temporaryDirectory . DIRECTORY_SEPARATOR . 'release-notes ' ;
107107 \mkdir ($ skillDirectory );
108- \file_put_contents ($ skillDirectory . DIRECTORY_SEPARATOR . 'SKILL.md ' , <<<' MARKDOWN'
108+ \file_put_contents ($ skillDirectory . DIRECTORY_SEPARATOR . 'SKILL.md ' , <<<MARKDOWN
109109---
110110name: release-notes
111111description: Generate release notes from a changelog and commit history.
@@ -135,7 +135,7 @@ public function itDelegatesToValidateFileWhenInputIsAFilePath(): void
135135 \mkdir ($ skillDirectory );
136136 $ skillFile = $ skillDirectory . DIRECTORY_SEPARATOR . 'SKILL.md ' ;
137137
138- \file_put_contents ($ skillFile , <<<' MARKDOWN'
138+ \file_put_contents ($ skillFile , <<<MARKDOWN
139139---
140140name: release-notes
141141description: Generate release notes from a changelog and commit history.
@@ -161,7 +161,7 @@ public function itDelegatesToValidateFileWhenInputIsAFilePath(): void
161161 #[Test]
162162 public function itDelegatesToValidateContentWhenInputIsRawContent (): void
163163 {
164- $ content = <<<' MARKDOWN'
164+ $ content = <<<MARKDOWN
165165---
166166name: code-review
167167description: Review code changes and provide actionable feedback.
@@ -196,7 +196,7 @@ public function itDelegatesToValidateContentWhenInputIsNotAnExistingFile(): void
196196 #[Test]
197197 public function itValidatesAValidSkillMdContent (): void
198198 {
199- $ content = <<<' MARKDOWN'
199+ $ content = <<<MARKDOWN
200200---
201201name: code-review
202202description: Review code changes and provide actionable feedback.
@@ -237,7 +237,7 @@ public function itParsesAndValidatesASkillMdFile(): void
237237 \mkdir ($ skillDirectory );
238238 $ skillFile = $ skillDirectory . DIRECTORY_SEPARATOR . 'SKILL.md ' ;
239239
240- \file_put_contents ($ skillFile , <<<' MARKDOWN'
240+ \file_put_contents ($ skillFile , <<<MARKDOWN
241241---
242242name: release-notes
243243description: Generate release notes from a changelog and commit history.
@@ -263,7 +263,7 @@ public function itParsesAndValidatesASkillMdFile(): void
263263 #[Test]
264264 public function itReportsMissingFrontmatter (): void
265265 {
266- $ content = <<<' MARKDOWN'
266+ $ content = <<<MARKDOWN
267267# Code review
268268
269269Review the changed files.
@@ -284,7 +284,7 @@ public function itReportsMissingFrontmatter(): void
284284 #[Test]
285285 public function itReportsMissingRequiredFields (): void
286286 {
287- $ content = <<<' MARKDOWN'
287+ $ content = <<<MARKDOWN
288288---
289289version: 1.0.0
290290---
@@ -304,7 +304,7 @@ public function itReportsMissingRequiredFields(): void
304304 #[Test]
305305 public function itReportsInvalidName (): void
306306 {
307- $ content = <<<' MARKDOWN'
307+ $ content = <<<MARKDOWN
308308---
309309name: Invalid Skill
310310description: Review code changes and provide actionable feedback.
@@ -333,7 +333,7 @@ public function itReportsNameMismatchWithParentDirectory(): void
333333 \mkdir ($ skillDirectory );
334334 $ skillFile = $ skillDirectory . DIRECTORY_SEPARATOR . 'SKILL.md ' ;
335335
336- \file_put_contents ($ skillFile , <<<' MARKDOWN'
336+ \file_put_contents ($ skillFile , <<<MARKDOWN
337337---
338338name: release-notes
339339description: Generate release notes from a changelog and commit history.
@@ -356,7 +356,7 @@ public function itReportsNameMismatchWithParentDirectory(): void
356356 #[Test]
357357 public function itReportsUnexpectedFields (): void
358358 {
359- $ content = <<<' MARKDOWN'
359+ $ content = <<<MARKDOWN
360360---
361361name: code-review
362362description: Review code changes and provide actionable feedback.
@@ -377,7 +377,7 @@ public function itReportsUnexpectedFields(): void
377377 #[Test]
378378 public function itReportsEmptyMarkdownInstructions (): void
379379 {
380- $ content = <<<' MARKDOWN'
380+ $ content = <<<MARKDOWN
381381---
382382name: code-review
383383description: Review code changes and provide actionable feedback.
@@ -408,7 +408,7 @@ public function itReportsMissingFiles(): void
408408 #[Test]
409409 public function itCanBeConvertedToAnArray (): void
410410 {
411- $ content = <<<' MARKDOWN'
411+ $ content = <<<MARKDOWN
412412---
413413name: code-review
414414description: Review code changes and provide actionable feedback.
@@ -433,7 +433,7 @@ public function itCanBeConvertedToAnArray(): void
433433 #[Test]
434434 public function itExposesRequiredMetadataFieldsAsDedicatedMethods (): void
435435 {
436- $ content = <<<' MARKDOWN'
436+ $ content = <<<MARKDOWN
437437---
438438name: code-review
439439description: Review code changes and provide actionable feedback.
0 commit comments