File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed
Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 274274 },
275275 "monolog/monolog" : {
276276 "Fix monolog Slack Handler bug for magento 2.1.x" : {
277- "1.16.0" : " MAGECLOUD-2793__fix_monolog_slack_handler_2.1.x.patch"
277+ "1.16.0" : " MAGECLOUD-2793__fix_monolog_slack_handler_2.1.x.patch" ,
278+ ">=1.16.0 <1.24.0" : " MAGECLOUD-6029__add_processor_interface_2.1.x.patch"
278279 }
279280 },
280281 "colinmollenhour/cache-backend-redis" : {
Original file line number Diff line number Diff line change 1+ diff -Naur a/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php b/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php
2+ --- /dev/null
3+ +++ b/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php
4+ @@ -0,0 +1,25 @@
5+ + <?php
6+ +
7+ + /*
8+ + * This file is part of the Monolog package.
9+ + *
10+ + * (c) Jordi Boggiano <j.boggiano@seld.be>
11+ + *
12+ + * For the full copyright and license information, please view the LICENSE
13+ + * file that was distributed with this source code.
14+ + */
15+ +
16+ + namespace Monolog\Processor;
17+ +
18+ + /**
19+ + * An optional interface to allow labelling Monolog processors.
20+ + *
21+ + * @author Nicolas Grekas <p@tchwork.com>
22+ + */
23+ + interface ProcessorInterface
24+ + {
25+ + /**
26+ + * @return array The processed records
27+ + */
28+ + public function __invoke(array $records);
29+ + }
You can’t perform that action at this time.
0 commit comments