Contao3-Ninja / dlstats

Contao Module dlstats - Counts the number of file downloads
http://contao.ninja/download-statistik-dlstats.html
GNU Lesser General Public License v3.0
4 stars 0 forks source link

[Insight] PHP code should follow PSR-1 basic coding standard - in classes/DlstatsHelper.php, line 97 #76

Closed BugBuster1701 closed 9 years ago

BugBuster1701 commented 9 years ago

in classes/DlstatsHelper.php, line 97

Method names should be declared in camelCase. You should rename this method to comply with PSR-1.

     * Set DL_LOG, true: logging OK (default), false not OK
     * 
     * @return void
     * @access protected
     */
    public function setDL_LOG()
    {
        if ($this->IP_Filter === true || $this->BE_Filter === true || $this->BOT_Filter === true)
        {
            $this->DL_LOG = false;
        }

Posted from SensioLabsInsight