-
Notifications
You must be signed in to change notification settings - Fork 0
Test integrate CI #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
080fb97 to
3daf4ba
Compare
3daf4ba to
7cc5f59
Compare
| { | ||
| use AuthorizesRequests, DispatchesJobs, ValidatesRequests; | ||
|
|
||
| public function test () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reporter: CHECKSTYLE
Rule: Squiz.Functions.FunctionDeclaration
Severity: ERROR
File: app/Http/Controllers/Controller.php L14
Expected "function abc(...)"; found "function abc (...)"
| { | ||
| use AuthorizesRequests, DispatchesJobs, ValidatesRequests; | ||
|
|
||
| public function test () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reporter: CHECKSTYLE
Rule: Squiz.Functions.MultiLineFunctionDeclaration.SpaceBeforeOpenParen
Severity: ERROR
File: app/Http/Controllers/Controller.php L14
Expected 0 spaces before opening parenthesis; 2 found
| { | ||
| use AuthorizesRequests, DispatchesJobs, ValidatesRequests; | ||
|
|
||
| public function test () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reporter: CHECKSTYLE
Rule: Squiz.Functions.MultiLineFunctionDeclaration.BraceOnSameLine
Severity: ERROR
File: app/Http/Controllers/Controller.php L14
Opening brace should be on a new line
| use AuthorizesRequests, DispatchesJobs, ValidatesRequests; | ||
|
|
||
| public function test () { | ||
| $test = array(1, 2,3, 4, 65); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reporter: CHECKSTYLE
Rule: Generic.WhiteSpace.DisallowTabIndent.TabsUsed
Severity: ERROR
File: app/Http/Controllers/Controller.php L15
Spaces must be used to indent lines; tabs are not allowed
| use AuthorizesRequests, DispatchesJobs, ValidatesRequests; | ||
|
|
||
| public function test () { | ||
| $test = array(1, 2,3, 4, 65); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reporter: CHECKSTYLE
Rule: Framgia.Array.ArrayDeclaration.ShortArraySyntax
Severity: ERROR
File: app/Http/Controllers/Controller.php L15
"array()" function used. Use short array syntax, "[]", instead.
| use AuthorizesRequests, DispatchesJobs, ValidatesRequests; | ||
|
|
||
| public function test () { | ||
| $test = array(1, 2,3, 4, 65); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reporter: CHECKSTYLE
Rule: Framgia.Array.ArrayDeclaration.NoSpaceAfterComma
Severity: ERROR
File: app/Http/Controllers/Controller.php L15
Expected 1 space between comma and "3"; 0 found
No description provided.