| 1 |
<?php |
| 2 |
class Kint_Decorators_Plain extends Kint |
| 3 |
{ |
| 4 |
/** |
| 5 |
* output: |
| 6 |
* |
| 7 |
* [access *] [name] type [operator *] [subtype] [size] [value] |
| 8 |
* |
| 9 |
* @param kintParser $kintVar |
| 10 |
* |
| 11 |
* @return string |
| 12 |
*/ |
| 13 |
protected static function decorate( $kintVar ) |
| 14 |
{ |
| 15 |
} |
| 16 |
|
| 17 |
|
| 18 |
/** |
| 19 |
* produces css and js required for display. May be called multiple times, will only produce output once per |
| 20 |
* pageload or until `-` or `@` modifier is used |
| 21 |
* |
| 22 |
* @return string |
| 23 |
*/ |
| 24 |
protected static function _css() |
| 25 |
{ |
| 26 |
} |
| 27 |
|
| 28 |
|
| 29 |
|
| 30 |
/** |
| 31 |
* called for each dump, opens the html tag |
| 32 |
* |
| 33 |
* @param array $callee caller information taken from debug backtrace |
| 34 |
* |
| 35 |
* @return string |
| 36 |
*/ |
| 37 |
protected static function _wrapStart( $callee ) |
| 38 |
{ |
| 39 |
} |
| 40 |
|
| 41 |
|
| 42 |
/** |
| 43 |
* closes Kint::_wrapStart() started html tags and displays callee information |
| 44 |
* |
| 45 |
* @param array $callee caller information taken from debug backtrace |
| 46 |
* @param array $prevCaller previous caller information taken from debug backtrace |
| 47 |
* |
| 48 |
* @return string |
| 49 |
*/ |
| 50 |
private static function _wrapEnd( $callee, $prevCaller ) |
| 51 |
{ |
| 52 |
} |
| 53 |
|
| 54 |
} |