Skip to content

Commit 6f05d21

Browse files
marickvantuilStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent e73ebaf commit 6f05d21

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Config.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static function encryptEmails()
3131
*/
3232
public static function testing()
3333
{
34-
return (boolean) config('laravel-database-emails.testing.enabled', false);
34+
return (bool) config('laravel-database-emails.testing.enabled', false);
3535
}
3636

3737
/**

tests/ConfigTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Tests;
44

5-
65
use Stackkit\LaravelDatabaseEmails\Config;
76

87
class ConfigTest extends TestCase
@@ -56,4 +55,4 @@ public function test_cronjob_email_limit()
5655

5756
$this->assertEquals(15, Config::cronjobEmailLimit());
5857
}
59-
}
58+
}

0 commit comments

Comments
 (0)