From 90bc987ea7c7717ad29fe303989d2d1dcd7c92f9 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 3 Nov 2024 08:32:01 +0100 Subject: tests: Fix typo in UnitTestCase. Uncovered by PHP 8.2 because dynamic properties are deprecated. --- tests/unit/UnitTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/UnitTestCase.php b/tests/unit/UnitTestCase.php index afc309205..79f0ec440 100644 --- a/tests/unit/UnitTestCase.php +++ b/tests/unit/UnitTestCase.php @@ -47,7 +47,7 @@ require_once 'include/dba/dba_transaction.php'; */ class UnitTestCase extends TestCase { protected array $fixtures = array(); - protected ?\DbaTransaction $db_transacton = null; + protected ?\DbaTransaction $db_transaction = null; /** * Connect to the test db, load fixtures and global config. -- cgit v1.2.3 From a29a1c768dd71464748efd3c620d167504f23aa7 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 3 Nov 2024 08:39:21 +0100 Subject: tests: Declare private property $output. Uncovered by PHP 8.2 because dynamic properties are deprecated. --- tests/unit/Widget/HelpindexTest.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/unit/Widget/HelpindexTest.php b/tests/unit/Widget/HelpindexTest.php index 26aa34104..87042c559 100644 --- a/tests/unit/Widget/HelpindexTest.php +++ b/tests/unit/Widget/HelpindexTest.php @@ -8,6 +8,8 @@ * SPDX-License-Identifier: MIT */ +use PHPUnit\Framework\Attributes\Before; + /** * Test class for testing the Helpindex widget. */ @@ -15,6 +17,8 @@ class HelpindexTest extends \Zotlabs\Tests\Unit\Module\TestCase { use \phpmock\phpunit\PHPMock; + private string $output; + /** * Define the stubs to make sure they work later in the test. * @@ -27,6 +31,12 @@ class HelpindexTest extends \Zotlabs\Tests\Unit\Module\TestCase { self::defineFunctionMock('Zotlabs\Widget', 'file_get_contents'); } + #[Before] + public function setup_state(): void { + // Make sure the output is cleared before running the test + $this->output = ''; + } + public function test_loading_toc(): void { // Stub `file_get_contents` to plant our own content. $fgc_stub = $this->getFunctionMock('Zotlabs\Widget', 'file_get_contents'); -- cgit v1.2.3 From bf008465ad36797f2349ad2bcea00bdd84f4fcfb Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 3 Nov 2024 08:42:11 +0100 Subject: Zotlabs\Web\HttpMeta: Declare and init properties. The $ogproperty was not declared, which triggered a warning in PHP 8.2. Also fixed the initialization of the properties, and removed the now superfluous constructor. --- Zotlabs/Web/HttpMeta.php | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/Zotlabs/Web/HttpMeta.php b/Zotlabs/Web/HttpMeta.php index 7cf93dda9..d12037a51 100644 --- a/Zotlabs/Web/HttpMeta.php +++ b/Zotlabs/Web/HttpMeta.php @@ -5,16 +5,9 @@ namespace Zotlabs\Web; class HttpMeta { - private $vars = null; - private $og = null; - - function __construct() { - - $this->vars = []; - $this->og = []; - $this->ogproperties = []; - - } + private $vars = []; + private $og = []; + private $ogproperties = []; //Set Meta Value // Mode: -- cgit v1.2.3 From 8ab3ad65310abf558b85253c92b015879f31e594 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 3 Nov 2024 08:48:53 +0100 Subject: Zotlabs\Module\Setup: Fix deprecation. Using `self` in callables has been deprecated, so change to proper fully qualified class name. --- Zotlabs/Module/Setup.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 35079e5e5..5b423f67d 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -263,7 +263,10 @@ class Setup extends \Zotlabs\Web\Controller { $this->check_htaccess($checks); - $checkspassed = array_reduce($checks, "self::check_passed", true); + $checkspassed = array_reduce( + $checks, + "Zotlabs\Module\Setup::check_passed", + true); $tpl = get_markup_template('install_checks.tpl'); $o .= replace_macros($tpl, array( -- cgit v1.2.3