Skip to content

Commit

Permalink
Add docblocks to hooks used in customizer class.
Browse files Browse the repository at this point in the history
This resolves PHP linting errors.
  • Loading branch information
danielwrobert committed Sep 9, 2022
1 parent c18cd6e commit 26b9de9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions inc/customizer/class-storefront-customizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -858,15 +858,23 @@ public function get_css() {
* @package storefront
* @since 2.0.0
*/
<<<<<<< HEAD
$brighten_factor = apply_filters( 'storefront_brighten_factor', 25 );
=======
$brighten_factor = apply_filters( 'storefront_brighten_factor', 25 );
>>>>>>> f7bdc6c5 (Add docblocks to hooks used in customizer class.)
/**
* Filters for darkening color value.
*
* @param int Numerical value for darken amount.
* @package storefront
* @since 2.0.0
*/
<<<<<<< HEAD
$darken_factor = apply_filters( 'storefront_darken_factor', -25 );
=======
$darken_factor = apply_filters( 'storefront_darken_factor', -25 );
>>>>>>> f7bdc6c5 (Add docblocks to hooks used in customizer class.)

$styles = '
.main-navigation ul li a,
Expand Down

0 comments on commit 26b9de9

Please sign in to comment.