User specific files should not appear in .gitignore
More information: https://insight.symfony.com/what-we-analyse/git.user_specific_ignored_file
- composer.lock
- composer.phar
- vendor/
- .idea/
- build/
Text files should end with a newline character
More information: https://insight.symfony.com/what-we-analyse/missing_e_o_l
- composer.lock
- composer.phar
- vendor/
- .idea/
- build/
Methods and properties visibility should always be explicitly defined
More information: https://insight.symfony.com/what-we-analyse/php.method_or_property_missing_visibility
- protected $piwikHost;
- protected $trackerPath;
- protected $paqs = array();
- function __construct($disabled, $siteId, $piwikHost, $trackerPath)
- {
- $this->disabled = $disabled;
- $this->siteId = $siteId;
- $this->piwikHost = rtrim($piwikHost, '/');
- $this->trackerPath = ltrim($trackerPath, '/');