Passed
Pull Request — master (#321)
by
unknown
03:16
created
Components/FeatureAdminLoginBranding/functions.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 use Flynt\ComponentManager;
6 6
 use Flynt\Utils\Asset;
7 7
 
8
-add_action('login_enqueue_scripts', function () {
8
+add_action('login_enqueue_scripts', function() {
9 9
     $logo = [
10 10
         'src' => get_theme_mod('custom_header_logo') ? get_theme_mod('custom_header_logo') : Asset::requireUrl('Components/FeatureAdminLoginBranding/Assets/logo.svg'),
11 11
         'alt' => get_bloginfo('name')
@@ -32,12 +32,12 @@  discard block
 block discarded – undo
32 32
     ]);
33 33
 }, 99);
34 34
 
35
-add_filter('login_headerurl', function () {
35
+add_filter('login_headerurl', function() {
36 36
     return home_url();
37 37
 });
38 38
 
39
-add_filter('login_headertext', function () {
40
-    return get_bloginfo('name') . ' – '. get_bloginfo('description');
39
+add_filter('login_headertext', function() {
40
+    return get_bloginfo('name') . ' – ' . get_bloginfo('description');
41 41
 });
42 42
 
43 43
 function insertLogoInlineCss($logoUrl)
Please login to merge, or discard this patch.