Skip to content

Commit eddc777

Browse files
committed
PHPCBF run
1 parent 8da0c1f commit eddc777

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

classes/class-custom-typekit-fonts-admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Custom_Typekit_Fonts_Admin {
4040
*/
4141
public static function get_instance() {
4242
if ( ! isset( self::$_instance ) ) {
43-
self::$_instance = new self;
43+
self::$_instance = new self();
4444
}
4545

4646
return self::$_instance;

classes/class-custom-typekit-fonts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Custom_Typekit_Fonts {
2626
*/
2727
public static function get_instance() {
2828
if ( ! isset( self::$instance ) ) {
29-
self::$instance = new self;
29+
self::$instance = new self();
3030
}
3131

3232
return self::$instance;

classes/class-typekit-fonts-white-label.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Typekit_Fonts_White_Label {
4141
*/
4242
public static function set_instance() {
4343
if ( ! isset( self::$instance ) ) {
44-
self::$instance = new self;
44+
self::$instance = new self();
4545
}
4646
return self::$instance;
4747
}

0 commit comments

Comments
 (0)