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.
- The class namespace declaration must be on the same line as