Page MenuHomePhabricator

Fixed naming convention violations.
ClosedPublic

Authored by joshuaspence on Feb 26 2014, 7:51 AM.
Tags
None
Referenced Files
F14034840: D8348.id19855.diff
Sun, Nov 10, 2:23 AM
Unknown Object (File)
Oct 9 2024, 7:21 AM
Unknown Object (File)
Oct 2 2024, 8:18 AM
Unknown Object (File)
Sep 30 2024, 6:15 PM
Unknown Object (File)
Sep 19 2024, 8:27 PM
Unknown Object (File)
Sep 18 2024, 7:36 PM
Unknown Object (File)
Sep 4 2024, 5:19 PM
Unknown Object (File)
Aug 29 2024, 5:11 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

Repository
rP Phabricator
Branch
naming_conventions
Lint
Lint Passed
Unit
Tests Skipped