classes/Repository.php
The property $full_name is not named in camelCase. Open
Open
class Repository
{
public $full_name;
public $hookID = '';
public $displayName;
- Read upRead up
- Exclude checks
CamelCasePropertyName
Since: 0.2
It is considered best practice to use the camelCase notation to name attributes.
Example
class ClassName {
protected $property_name;
}