]> git.mxchange.org Git - friendica-addons.git/commitdiff
Adhere feedback
authorPhilipp <admin@philipp.info>
Fri, 21 Jul 2023 20:41:35 +0000 (22:41 +0200)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sun, 23 Jul 2023 11:00:31 +0000 (13:00 +0200)
- rename hooks.config.php to strategies.config.php
- change all corresponding classes and tests

monolog/static/hooks.config.php [deleted file]
monolog/static/strategies.config.php [new file with mode: 0644]

diff --git a/monolog/static/hooks.config.php b/monolog/static/hooks.config.php
deleted file mode 100644 (file)
index 7759e67..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-<?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/>.
- *
- */
-
-use Friendica\Core\Hooks\Capabilities\BehavioralHookType as H;
-
-return [
-       H::STRATEGY => [
-               \Psr\Log\LoggerInterface::class => [
-                       \Monolog\Logger::class => ['monolog'],
-               ],
-       ],
-];
diff --git a/monolog/static/strategies.config.php b/monolog/static/strategies.config.php
new file mode 100644 (file)
index 0000000..8715383
--- /dev/null
@@ -0,0 +1,26 @@
+<?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/>.
+ *
+ */
+
+return [
+       \Psr\Log\LoggerInterface::class => [
+               \Monolog\Logger::class => ['monolog'],
+       ],
+];