-
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 #6 from skaut/WP_Theme
WP_Theme
- Loading branch information
Showing
2 changed files
with
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
/** | ||
* @package phan-wordpress-stubs | ||
*/ | ||
|
||
/** | ||
*/ | ||
class WP_Theme implements ArrayAccess { | ||
/** | ||
* @var string | ||
*/ | ||
public $version; | ||
|
||
/** | ||
* @param mixed $offset | ||
* | ||
* @return bool | ||
*/ | ||
public function offsetExists( $offset ) { | ||
} | ||
|
||
/** | ||
* @param mixed $offset | ||
* | ||
* @return mixed | ||
*/ | ||
public function offsetGet( $offset ) { | ||
} | ||
|
||
/** | ||
* @param mixed $offset | ||
* @param mixed $value | ||
* | ||
* @return void | ||
*/ | ||
public function offsetSet( $offset, $value ) { | ||
} | ||
|
||
/** | ||
* @param mixed $offset | ||
*/ | ||
public function offsetUnset( $offset ) { | ||
} | ||
} |
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