Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 618 Bytes

readme.md

File metadata and controls

10 lines (9 loc) · 618 Bytes

Laravel Standards

Follow the standards set by Laravel:

  • PSR0
  • PSR1
  • Additional:
    • The class namespace declaration must be on the same line as <?php.
    • A class' opening { must be on the same line as the class name.
    • Functions and control structures must use Allman style braces.
    • Indent with tabs, align with spaces.