]> git.mxchange.org Git - friendica.git/commitdiff
removing array prefix (compatibility)
authorPhilipp Holzer <admin@philipp.info>
Mon, 28 Jan 2019 10:35:08 +0000 (11:35 +0100)
committerPhilipp Holzer <admin@philipp.info>
Mon, 28 Jan 2019 10:35:08 +0000 (11:35 +0100)
src/Util/Logger/FriendicaProcessor.php

index 8e45c228fdcdc58f4fa6b275ad71d728566e670e..627f628b881d05c4a5372bac61aeb68943b9b30c 100644 (file)
@@ -29,7 +29,7 @@ class FriendicaProcessor implements ProcessorInterface
         * @param array $skipClassesPartials An array of classes to skip during logging
         * @param int $skipStackFramesCount If the logger should use information from other hierarchy levels of the call
         */
-       public function __construct($level = Logger::DEBUG, array $skipClassesPartials = array(), $skipStackFramesCount = 0)
+       public function __construct($level = Logger::DEBUG, $skipClassesPartials = array(), $skipStackFramesCount = 0)
        {
                $this->level = Logger::toMonologLevel($level);
                $this->skipClassesPartials = array_merge(array('Monolog\\'), $skipClassesPartials);