-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from skaut/partials
Partials
- Loading branch information
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
/** | ||
* @package phan-wordpress-stubs | ||
*/ | ||
|
||
/** | ||
*/ | ||
class WP_Customize_Partial { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* @package phan-wordpress-stubs | ||
*/ | ||
|
||
/** | ||
*/ | ||
class WP_Customize_Selective_Refresh { | ||
/** | ||
* @param WP_Customize_Partial|string $id | ||
* @param array $args { | ||
* @type string $type | ||
* @type string $selector | ||
* @type string[] $settings | ||
* @type string $primary_setting | ||
* @type string $capability | ||
* @type callable $render_callback | ||
* @type bool $container_inclusive | ||
* @type bool $fallback_refresh | ||
* } | ||
* | ||
* @return WP_Customize_Partial | ||
*/ | ||
public function add_partial( $id, $args = array() ) { | ||
} | ||
} |