| 1 | <?php |
||
| 3 | abstract class Kint_Renderer |
||
| 4 | { |
||
| 5 | protected $parameters; |
||
| 6 | |||
| 7 | abstract public function render(Kint_Object $o); |
||
| 8 | |||
| 9 | /** |
||
| 10 | * It's a constructor. It constructs. |
||
| 11 | * |
||
| 12 | * @param array $parameters Array with initial kint state information |
||
| 13 | */ |
||
| 14 | public function __construct(array $parameters) |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Returns the first compatible plugin available. |
||
| 21 | * |
||
| 22 | * @param array $plugins Array of hints to class strings |
||
| 23 | * @param array $hints Array of object hints |
||
| 24 | * |
||
| 25 | * @return array Array of hints to class strings filtered and sorted by object hints |
||
| 26 | */ |
||
| 27 | public function matchPlugins(array $plugins, array $hints) |
||
| 39 | |||
| 40 | public function parserPlugins(array $plugins) |
||
| 44 | |||
| 45 | public function preRender() |
||
| 49 | |||
| 50 | public function postRender() |
||
| 54 | } |
||
| 55 |
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.