We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e73ebaf + 6f05d21 commit df1dda2Copy full SHA for df1dda2
src/Config.php
@@ -31,7 +31,7 @@ public static function encryptEmails()
31
*/
32
public static function testing()
33
{
34
- return (boolean) config('laravel-database-emails.testing.enabled', false);
+ return (bool) config('laravel-database-emails.testing.enabled', false);
35
}
36
37
/**
tests/ConfigTest.php
@@ -2,7 +2,6 @@
2
3
namespace Tests;
4
5
-
6
use Stackkit\LaravelDatabaseEmails\Config;
7
8
class ConfigTest extends TestCase
@@ -56,4 +55,4 @@ public function test_cronjob_email_limit()
56
55
57
$this->assertEquals(15, Config::cronjobEmailLimit());
58
59
-}
+}
0 commit comments