Skip to content

Commit

Permalink
return type
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdawgsfootball committed Jul 11, 2024
1 parent 837683b commit 0c61920
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SBOMResearcher.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ function Get-SBOMType {

function Get-CycloneDXComponentList {
[CmdletBinding()]
[OutputType([PSObject[]])]
[OutputType([System.Collections.Generic.List[PSObject]])]
param(
[Parameter(Mandatory=$true)][PSObject]$SBOM,
[Parameter(Mandatory=$true)][PSObject]$allLicenses,
Expand Down Expand Up @@ -637,7 +637,7 @@ function Get-CycloneDXComponentList {

function Get-SPDXComponentList {
[CmdletBinding()]
[OutputType([PSObject[]])]
[OutputType([System.Collections.Generic.List[PSObject]])]
param(
[Parameter(Mandatory=$true)][PSObject]$SBOM,
[Parameter(Mandatory=$true)][PSObject]$allLicenses,
Expand Down

0 comments on commit 0c61920

Please # to comment.