LazyInitHelper does not seem to conform to the naming convention (Utils?$).
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.
Loading history...
16
{
17
use LazyInitStaticTrait;
18
19
/**
20
*
21
*/
22
const PART_SEPARATOR = '#';
23
24
/**
25
* @param Closure $closure
26
* @param string|null $key
27
* @param mixed[] $params
28
*
29
* @return mixed
30
*
31
* @throws ErrorException
32
*/
33
4
public static function lazyInit ( Closure $closure, $key = null, array $params = [ ] )
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.