Showing 283 of 290 total issues
Opening brace of a class must be on the line after the definition Open
Open
class F {
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return _curry3(function($fn, $default, $array) {
- Exclude checks
Each PHP statement must be on a line by itself Open
Open
return _curry1(function ($_c) use ($fn, $a, $b) { return $fn($a, $b, $_c); });
- Exclude checks
Each PHP statement must be on a line by itself Open
Open
return _curry2(function ($_b, $_c) use($fn, $a) { return $fn($a, $_b, $_c); });
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return _curry2(function($value, $array) {
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return _curry2(function($prop, $arr) {
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
? function(...$objs) use ($obj) { return array_merge($obj, ...$objs); }
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return _reduce(function($acc, $fn) {
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return function(...$args) use ($fn) { return _curry2($fn)(...$args); };
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return _curry2(function($fn, $array) {
- Exclude checks
Function closing brace must go on the next line following the body; found 1 blank lines before brace Open
Open
})(...$args);
- Exclude checks
Each PHP statement must be on a line by itself Open
Open
return _curry1(function ($_b) use($fn, $a) { return $fn($a, $_b); });
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return _curry2(function($fn, $array) {
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return _curry2(function($fn, $array) {
- Exclude checks
The closing brace for the class must go on the next line after the body Open
Open
}
- Exclude checks
Each PHP statement must be on a line by itself Open
Open
return function(...$args) use ($fn) { return _curry2($fn)(...$args); };
- Exclude checks
Terminating statement must be indented to the same level as the CASE body Open
Open
return $a__ ? $fn : _curry1(function ($_b) use ($fn, $a) {
- Exclude checks
Each PHP statement must be on a line by itself Open
Open
return _curry1(function ($_a) use($fn, $b) { return $fn($_a, $b); });
- Exclude checks
Each PHP statement must be on a line by itself Open
Open
return _curry2(function ($_a, $_b) use ($fn, $c) { return $fn($_a, $_b, $c); });
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return function(...$args) use ($fn) { return _curry1($fn)(...$args); };
- Exclude checks