Skip to content

Commit

Permalink
Fix lints.
Browse files Browse the repository at this point in the history
  • Loading branch information
spacedmonkey committed Nov 29, 2022
1 parent b0a9764 commit 2e646a7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/experimental/get-global-styles-and-settings.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
<?php

/**
* API to interact with global settings & styles.
*
* @package gutenberg
*/

/**
* Repeated logic from `get_default_block_editor_settings` function. When implemented into core,
* remove logic from `get_default_block_editor_settings` and simple call this function instead.
*
* @return array
*/
function gutenberg_get_block_theme_supports(){
function gutenberg_get_block_theme_supports() {
$theme_settings = array(
'disableCustomColors' => get_theme_support( 'disable-custom-colors' ),
'disableCustomFontSizes' => get_theme_support( 'disable-custom-font-sizes' ),
Expand Down

0 comments on commit 2e646a7

Please sign in to comment.