fixing small issue
This commit is contained in:
parent
583e45b31c
commit
90ca3d64eb
1 changed files with 13 additions and 10 deletions
|
@ -1,5 +1,4 @@
|
|||
<?php
|
||||
|
||||
namespace urlManipulator;
|
||||
|
||||
class UrlManipulator extends AbstractUrlManipulator
|
||||
|
@ -33,7 +32,10 @@ class UrlManipulator extends AbstractUrlManipulator
|
|||
|
||||
$modifiedUrl = $this->addParamToUrl($url, $newParam, $randomValue);
|
||||
|
||||
return ['status' => 200, 'data' => $modifiedUrl];
|
||||
return [
|
||||
'before' => $url,
|
||||
'after' => $modifiedUrl,
|
||||
];
|
||||
}
|
||||
|
||||
protected function addParamToUrl(string $url, string $param, string $value): string
|
||||
|
@ -54,7 +56,7 @@ class UrlManipulator extends AbstractUrlManipulator
|
|||
return uniqid();
|
||||
}
|
||||
|
||||
protected function getNewParam(array $existingParams): string | null
|
||||
protected function getNewParam(array $existingParams)
|
||||
{
|
||||
while (!empty($this->paramsArray)) {
|
||||
$newParam = array_pop($this->paramsArray);
|
||||
|
@ -67,5 +69,6 @@ class UrlManipulator extends AbstractUrlManipulator
|
|||
return null;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue