1 | <?php |
||
16 | final class Kirki_Modules_Webfonts_Async { |
||
17 | |||
18 | /** |
||
19 | * The config ID. |
||
20 | * |
||
21 | * @access protected |
||
22 | * @since 3.0.0 |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $config_id; |
||
26 | |||
27 | /** |
||
28 | * The Kirki_Modules_Webfonts object. |
||
29 | * |
||
30 | * @access protected |
||
31 | * @since 3.0.0 |
||
32 | * @var object |
||
33 | */ |
||
34 | protected $webfonts; |
||
35 | |||
36 | /** |
||
37 | * The Kirki_Fonts_Google object. |
||
38 | * |
||
39 | * @access protected |
||
40 | * @since 3.0.0 |
||
41 | * @var object |
||
42 | */ |
||
43 | protected $googlefonts; |
||
44 | |||
45 | /** |
||
46 | * Constructor. |
||
47 | * |
||
48 | * @access public |
||
49 | * @since 3.0 |
||
50 | */ |
||
51 | public function __construct( $config_id, $webfonts, $googlefonts, $args = array() ) { |
||
59 | |||
60 | /** |
||
61 | * Webfont Loader for Google Fonts. |
||
62 | * |
||
63 | * @access public |
||
64 | * @since 3.0.0 |
||
65 | */ |
||
66 | public function webfont_loader() { |
||
93 | } |
||
94 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.