Skip to content

Latest commit

 

History

History
executable file
·
15 lines (13 loc) · 221 Bytes

interface-naming.md

File metadata and controls

executable file
·
15 lines (13 loc) · 221 Bytes

PHP Naming Convention > Interface Naming

PascalCase

  • Begin with an uppercase letter
  • Avoid acronyms and abbreviations
  • Suffix interfaces with Interface
<?php
interface BookableInterface
{
    ...
}
?>