PSR-2 formatting of User model?

> Lists of implements MAY be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list MUST be on the next line, and there MUST be only one interface per line.

https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md#41-extends-and-implements
This commit is contained in:
Ben Sampson 2015-10-26 13:21:38 +00:00
parent d15ab4b82e
commit 2a3743b0fa
1 changed files with 4 additions and 3 deletions

View File

@ -10,7 +10,8 @@
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
class User extends Model implements AuthenticatableContract,
class User extends Model implements
AuthenticatableContract,
AuthorizableContract,
CanResetPasswordContract
{