Skip to content

Commit

Permalink
[Feature] Remove the un-used method LRN-44748
Browse files Browse the repository at this point in the history
  • Loading branch information
sreenivasa-murty-lrn committed Sep 30, 2024
1 parent ca1c23d commit 294fec2
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions tests/Fixtures/ParamsFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,34 +230,6 @@ public static function getWorkingAuthorApiParamsWithRequest($request, bool $asso
return $params;
}

/**
* @param bool $assoc If true, associative array will be returned
* @return array
*/
public static function getWorkingAuthorApiParamsWithEmptyJsonRequest(bool $assoc = false): array
{
$service = 'author';
$security = static::getSecurity();
$secret = static::TEST_CONSUMER_SECRET;
$request = '{}';
$action = null;

$params = [
'service' => $service,
'security' => $security,
'secret' => $secret,
'request' => $request,
'action' => $action,
];

if (!$assoc) {
return array_values($params);
}

return $params;
}


public static function getAuthorApiSignatureForVersion(string $version): string
{
switch ($version) {
Expand Down

0 comments on commit 294fec2

Please sign in to comment.