Skip to content

Commit

Permalink
Merge branch 'release/v0.15.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
betterthanclay committed Jun 20, 2024
2 parents a82c7de + 3122f01 commit 1c2e846
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.15.3 (2024-06-20)
* Added source accessors to InlineScript

## v0.15.2 (2024-06-20)
* Fixed InlineScript

Expand Down
17 changes: 17 additions & 0 deletions src/Asset/InlineScript.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,23 @@ public function __construct(
$this->setAttributes($attributes);
}

/**
* Set source
*/
public function setSource(
string $source
): void {
$this->source = $source;
}

/**
* Get source
*/
public function getSource(): string
{
return $this->source;
}

/**
* Set type
*/
Expand Down

0 comments on commit 1c2e846

Please sign in to comment.