Showing 283 of 290 total issues
Each PHP statement must be on a line by itself Open
Open
return _curry2(function ($_a, $_c) use ($fn, $b) { return $fn($_a, $b, $_c); });
- Exclude checks
Expected 1 space after USE keyword; found 0 Open
Open
return _curry2(function ($_b, $_c) use($fn, $a) { return $fn($a, $_b, $_c); });
- Exclude checks
Each PHP statement must be on a line by itself Open
Open
return _curry1(function ($_a) use($fn, $b, $c) { return $fn($_a, $b, $c); });
- 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($props, $arr) {
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return _curry2(function($props, $obj) {
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return _curry2(function($fn, $params) {
- Exclude checks
Expected 1 space after USE keyword; found 0 Open
Open
return _curry2(function ($_a, $_c) use($fn, $b) { return $fn($_a, $b, $_c); });
- Exclude checks
Each PHP statement must be on a line by itself Open
Open
return _curry2(function ($_a, $_c) use($fn, $b) { return $fn($_a, $b, $_c); });
- Exclude checks
Each PHP statement must be on a line by itself Open
Open
return _curry1(function ($_b) use($fn, $a, $c) { return $fn($a, $_b, $c); });
- 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
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return _curry1(function($a) {
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return function($a = null, $b = null) use ($fn) {
- Exclude checks
Expected 1 space after USE keyword; found 0 Open
Open
return _curry1(function ($_c) use($fn, $a, $b) { return $fn($a, $b, $_c); });
- Exclude checks
PHP keywords must be lowercase; expected "callable" but found "Callable" Open
Open
function _partition(Callable $fn, iterable $array) {
- Exclude checks
PHP keywords must be lowercase; expected "callable" but found "Callable" Open
Open
function _reduce(Callable $fn, iterable $array, $identity) {
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
Open
return function(...$args) use ($fn) { return _curry3($fn)(...$args); };
- Exclude checks
Terminating statement must be indented to the same level as the CASE body Open
Open
return _isPlaceholder($a) ? $fn : _curry2(function ($_b, $_c) use ($fn, $a) {
- Exclude checks
PHP keywords must be lowercase; expected "callable" but found "Callable" Open
Open
function _filter(Callable $fn, iterable $array) {
- Exclude checks