]> git.mxchange.org Git - friendica.git/blobdiff - tests/Util/RendererMockTrait.php
Remove relocation form from Admin Site settings
[friendica.git] / tests / Util / RendererMockTrait.php
index 04a65e302294f022cde3f3649f7a4ff9b8643e7d..49c669a2b21932ae8a6fc76888c76e757c180396 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -38,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);
@@ -54,12 +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 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, $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);