PHP Naming Convention > Interface Naming

PascalCase

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

Contributors

farbodsaraf