Skip to content

Commit

Permalink
fix phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
wordpressfan committed Feb 18, 2025
1 parent 830c406 commit e572c35
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions inc/Engine/CriticalPath/CriticalCSSSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,11 @@ public function insert_css_in_head( $items ) {
return $items;
}

/**
* Get critical CSS content, getter method for critical_css_content property.
*
* @return string
*/
public function get_critical_css_content() {
return $this->critical_css_content;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,11 @@ public function insert_font_preload_into_head( $items ) {
return $items;
}

/**
* Get font urls, getter method for font_urls property.
*
* @return array
*/
public function get_font_urls(): array {
return $this->font_urls;
}
Expand Down

0 comments on commit e572c35

Please sign in to comment.