]> git.mxchange.org Git - friendica.git/blobdiff - tests/Util/RendererMockTrait.php
Merge pull request #8649 from annando/annando/issue8550
[friendica.git] / tests / Util / RendererMockTrait.php
index 403f25f14dcf5f195f1c5fab200b22407239c2fc..04a65e302294f022cde3f3649f7a4ff9b8643e7d 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Test\Util;
 
@@ -37,11 +56,10 @@ trait RendererMockTrait
         *
         * @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
         */
-       public function mockReplaceMacros($template, $args = null, $overwriteURL = true, $return = '', $times = null)
+       public function mockReplaceMacros($template, $args = null, $return = '', $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);
        }
 }