X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2FUtil%2FRendererMockTrait.php;h=39b8e0ff0d6b4a43672d985923bb317657cc3a3d;hb=732ef70b8d1b0a8334c1d1444ce1ed376a1760e1;hp=403f25f14dcf5f195f1c5fab200b22407239c2fc;hpb=34748e8ffd6f2138556ea0df93d02231a8cdf4fa;p=friendica.git diff --git a/tests/Util/RendererMockTrait.php b/tests/Util/RendererMockTrait.php index 403f25f14d..39b8e0ff0d 100644 --- a/tests/Util/RendererMockTrait.php +++ b/tests/Util/RendererMockTrait.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Test\Util; @@ -19,7 +38,7 @@ trait RendererMockTrait * @param string $return the return value of the mock (should be defined to have it later for followUp use) * @param null|int $times How often the method will get used */ - public function mockGetMarkupTemplate($templateName, $return = '', $times = null) + public function mockGetMarkupTemplate(string $templateName, string $return = '', int $times = null) { if (!isset($this->rendererMock)) { $this->rendererMock = \Mockery::mock('alias:' . Renderer::class); @@ -35,13 +54,12 @@ trait RendererMockTrait /** * Mocking the method 'Renderer::replaceMacros()' * - * @param string $template The template to use (normally, it is the mock result of 'mockGetMarkupTemplate()' - * @param array|\Closure|null $args The arguments to pass to the macro - * @param bool $overwriteURL if the URL should get overwritten - * @param string $return the return value of the mock - * @param null|int $times How often the method will get used + * @param string $template The template to use (normally, it is the mock result of 'mockGetMarkupTemplate()' + * @param array|\Closure|null $args The arguments to pass to the macro + * @param string $return the return value of the mock + * @param null|int $times How often the method will get used */ - public function mockReplaceMacros($template, $args = null, $overwriteURL = true, $return = '', $times = null) + public function mockReplaceMacros(string $template, $args = null, string $return = '', int $times = null) { if (!isset($this->rendererMock)) { $this->rendererMock = \Mockery::mock('alias:' . Renderer::class); @@ -51,18 +69,10 @@ trait RendererMockTrait $args = []; } - if ($overwriteURL) { - $this->rendererMock - ->shouldReceive('replaceMacros') - ->with($template, $args) - ->times($times) - ->andReturn($return); - } else { - $this->rendererMock - ->shouldReceive('replaceMacros') - ->with($template, $args, false) - ->times($times) - ->andReturn($return); - } + $this->rendererMock + ->shouldReceive('replaceMacros') + ->with($template, $args) + ->times($times) + ->andReturn($return); } }