Skip to content

Commit

Permalink
API Set extension hook implementation visibility to protected
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed May 16, 2024
1 parent 83e2776 commit acaf2e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Extensions/ArchiveRestoreAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ArchiveRestoreAction extends DataExtension
* @param Form $form
* @return mixed
*/
public function updateItemEditForm(Form $form)
protected function updateItemEditForm(Form $form)
{
$record = $this->owner->getRecord();

Expand Down
2 changes: 1 addition & 1 deletion src/Extensions/UsedOnTableExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class UsedOnTableExtension extends Extension
/**
* @var array $excludedClasses
*/
public function updateUsageExcludedClasses(array &$excludedClasses)
protected function updateUsageExcludedClasses(array &$excludedClasses)
{
$excludedClasses[] = ChangeSetItem::class;
}
Expand Down

0 comments on commit acaf2e0

Please sign in to comment.