Skip to content

Commit

Permalink
Fix: Rename and move file
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Oct 1, 2022
1 parent 1f9e70a commit a1117f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/Type/MIT.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static function markdown(
return new self(
$name,
Template::fromFile(__DIR__ . '/../../resource/license/MIT.md'),
Template::fromFile(__DIR__ . '/../../resource/header.txt'),
Template::fromFile(__DIR__ . '/../../resource/header/with-reference-to-license-file.txt'),
$period,
$holder,
$url,
Expand All @@ -77,7 +77,7 @@ public static function text(
return new self(
$name,
Template::fromFile(__DIR__ . '/../../resource/license/MIT.txt'),
Template::fromFile(__DIR__ . '/../../resource/header.txt'),
Template::fromFile(__DIR__ . '/../../resource/header/with-reference-to-license-file.txt'),
$period,
$holder,
$url,
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/HeaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function testToStringReturnsStringRepresentation(): void
{
$faker = self::faker();

$template = Template::fromFile(__DIR__ . '/../../resource/header.txt');
$template = Template::fromFile(__DIR__ . '/../../resource/header/with-reference-to-license-file.txt');
$range = Range::since(
Year::fromString($faker->year()),
new \DateTimeZone($faker->timezone()),
Expand Down

0 comments on commit a1117f3

Please sign in to comment.