Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| Atomic_Persistent_Data | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| __get | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | /** |
| 3 | * Atomic_Persistent_Data file. |
| 4 | * |
| 5 | * @package wpcomsh |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * The class Atomic_Persistent_Data. |
| 10 | * |
| 11 | * @property string $WPCOM_PURCHASES |
| 12 | * @property string $WPCOM_MARKETPLACE |
| 13 | * @property string $WPCOM_MARKETPLACE_SOFTWARE |
| 14 | */ |
| 15 | final class Atomic_Persistent_Data { |
| 16 | |
| 17 | /** |
| 18 | * The get function. |
| 19 | * |
| 20 | * @param string $key The persistent data key. |
| 21 | * |
| 22 | * @return null |
| 23 | */ |
| 24 | public function __get( $key ) { //phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.Found, VariableAnalysis.CodeAnalysis.VariableAnalysis |
| 25 | return null; |
| 26 | } |
| 27 | } |