diff options
-rw-r--r-- | lib/private/Log/Errorlog.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/Log/Errorlog.php b/lib/private/Log/Errorlog.php index d27759d7050..7fca04d8b34 100644 --- a/lib/private/Log/Errorlog.php +++ b/lib/private/Log/Errorlog.php @@ -1,4 +1,7 @@ <?php + +declare(strict_types=1); + /** * The MIT License (MIT) * @@ -32,7 +35,7 @@ class Errorlog implements IWriter { /** @var string */ protected $tag; - public function __construct(string $tag = 'owncloud') { + public function __construct(string $tag = 'nextcloud') { $this->tag = $tag; } |