]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Util/EMailerTest.php
Merge remote-tracking branch 'upstream/develop' into inbox-gsid
[friendica.git] / tests / src / Util / EMailerTest.php
index 7f96e010a5b0e65482550dceebae7fd0d56fba2d..b43482b304fd51a5f8b0ccbc82179eef29a9171c 100644 (file)
@@ -1,11 +1,30 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @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\src\Util;
 
 use Friendica\App\BaseURL;
-use Friendica\Core\Config\IConfig;
+use Friendica\Core\Config\Capability\IManageConfigValues;
 use Friendica\Core\L10n;
-use Friendica\Core\PConfig\IPConfig;
+use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
 use Friendica\Object\EMail\IEmail;
 use Friendica\Test\MockedTest;
 use Friendica\Test\Util\EmailerSpy;
@@ -26,9 +45,9 @@ class EMailerTest extends MockedTest
        use VFSTrait;
        use HookMockTrait;
 
-       /** @var IConfig|MockInterface */
+       /** @var IManageConfigValues|MockInterface */
        private $config;
-       /** @var IPConfig|MockInterface */
+       /** @var IManagePersonalConfigValues|MockInterface */
        private $pConfig;
        /** @var L10n|MockInterface */
        private $l10n;
@@ -41,12 +60,12 @@ class EMailerTest extends MockedTest
 
                $this->setUpVfsDir();
 
-               $this->config  = \Mockery::mock(IConfig::class);
+               $this->config  = \Mockery::mock(IManageConfigValues::class);
                $this->config->shouldReceive('get')->withArgs(['config', 'sender_email'])->andReturn('test@friendica.local')->once();
                $this->config->shouldReceive('get')->withArgs(['config', 'sitename', 'Friendica Social Network'])->andReturn('Friendica Social Network')->once();
                $this->config->shouldReceive('get')->withArgs(['system', 'sendmail_params', true])->andReturn(true);
 
-               $this->pConfig = \Mockery::mock(IPConfig::class);
+               $this->pConfig = \Mockery::mock(IManagePersonalConfigValues::class);
                $this->l10n    = \Mockery::mock(L10n::class);
                $this->baseUrl = \Mockery::mock(BaseURL::class);
                $this->baseUrl->shouldReceive('getHostname')->andReturn('friendica.local');