Page MenuHomePhabricator

Fixed naming convention violations.
ClosedPublic

Authored by joshuaspence on Feb 26 2014, 7:51 AM.
Tags
None
Referenced Files
Unknown Object (File)
Apr 21 2026, 7:45 PM
Unknown Object (File)
Apr 21 2026, 7:45 PM
Unknown Object (File)
Apr 1 2026, 1:36 AM
Unknown Object (File)
Mar 30 2026, 10:27 AM
Unknown Object (File)
Mar 11 2026, 1:34 PM
Unknown Object (File)
Mar 9 2026, 2:05 AM
Unknown Object (File)
Mar 3 2026, 8:43 PM
Unknown Object (File)
Nov 21 2025, 5:34 AM

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