| 1 | <?php |
||
| 3 | class Kint_Parser_Base64 extends Kint_Parser_Plugin |
||
| 4 | { |
||
| 5 | /** |
||
| 6 | * The minimum length before a string will be considered for base64 decoding. |
||
| 7 | * |
||
| 8 | * @var int |
||
| 9 | */ |
||
| 10 | public static $min_length_hard = 16; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * The minimum length before the base64 decoding will take precedence. |
||
| 14 | * |
||
| 15 | * @var int |
||
| 16 | */ |
||
| 17 | public static $min_length_soft = 50; |
||
| 18 | |||
| 19 | public function getTypes() |
||
| 23 | |||
| 24 | public function getTriggers() |
||
| 28 | |||
| 29 | public function parse(&$var, Kint_Object &$o, $trigger) |
||
| 58 | } |
||
| 59 |
This check examines a number of code elements and verifies that they conform to the given naming conventions.
You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.