Page MenuHomePhabricator

Fixed naming convention violations.
ClosedPublic

Authored by joshuaspence on Feb 26 2014, 7:51 AM.
Tags
None
Referenced Files
Unknown Object (File)
May 9 2025, 1:49 PM
Unknown Object (File)
May 7 2025, 12:35 AM
Unknown Object (File)
May 5 2025, 6:07 AM
Unknown Object (File)
Mar 29 2025, 9:35 PM
Unknown Object (File)
Mar 23 2025, 7:52 PM
Unknown Object (File)
Mar 15 2025, 6:08 AM
Unknown Object (File)
Mar 15 2025, 3:07 AM
Unknown Object (File)
Mar 12 2025, 3:10 PM

Details

Reviewers
epriestley
Group Reviewers
Blessed Reviewers
Commits
Restricted Diffusion Commit
rPcea58de0ba92: Fixed naming convention violations.
Summary

This file contains member variables prefixed with underscores. This violates the naming convention enforced by the linter.

Test Plan

The linter warnings have disappeared. Example:

>>> Lint for src/infrastructure/storage/lisk/LiskDAO.php:


   Warning  (XHP9) Naming Conventions
    Follow naming conventions: class properties should be named using
    lowerCamelCase.

             183
             184   const COUNTER_TABLE_NAME          = 'lisk_counter';
             185
    >>>      186   private $__dirtyFields            = array();
             187   private $__missingFields          = array();
             188   private static $processIsolationLevel       = 0;
             189   private static $transactionIsolationLevel   = 0;

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped