Skip to content

Latest commit

 

History

History
executable file
·
24 lines (18 loc) · 366 Bytes

class-naming.md

File metadata and controls

executable file
·
24 lines (18 loc) · 366 Bytes

PHP Convention > Class Naming

PascalCase

  • Begin with an uppercase letter
  • Preferably a noun e.g. Car, Bird, MountainBike
  • Avoid acronyms and abbreviations
  • Declare class properties before methods
<?php
class SportTeam
{  
    const MAX_PLAYER = 24;

    private $name;

    public function getName() {
        return $this->name;
    }

}
?>