File does not seem to conform to the naming convention (^Abstract|Factory$).
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...
13
{
14
/**
15
* @var int
16
*/
17
protected $timeout;
18
19
/**
20
* @var bool
21
*/
22
protected $mustExist;
23
24
/**
25
* File constructor.
26
*
27
* @param string $value
28
* @param bool $mustExist
29
* @param int $timeout
30
*/
31
5
public function __construct($value, $mustExist = true, $timeout = 10)
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.