You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example this will cause the The first trait import statement must be declared on the first non-comment line after the class opening brace error to be shown:
class MyClass
{
/*
some comment
*/
use RegistersUsers;
while this will not:
class MyClass
{
use RegistersUsers;
/*
some comment
*/