summaryrefslogtreecommitdiffstats
path: root/src/Monolog/Test/TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Monolog/Test/TestCase.php')
-rw-r--r--src/Monolog/Test/TestCase.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Monolog/Test/TestCase.php b/src/Monolog/Test/TestCase.php
index fab3dee..7cb7fbf 100644
--- a/src/Monolog/Test/TestCase.php
+++ b/src/Monolog/Test/TestCase.php
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
/*
* This file is part of the Monolog package.
@@ -59,7 +59,9 @@ class TestCase extends \PHPUnit_Framework_TestCase
$formatter = $this->getMock('Monolog\\Formatter\\FormatterInterface');
$formatter->expects($this->any())
->method('format')
- ->will($this->returnCallback(function ($record) { return $record['message']; }));
+ ->will($this->returnCallback(function ($record) {
+ return $record['message'];
+ }));
return $formatter;
}