Removed unwanted semicolon

This commit is contained in:
Mikhail Vyrtsev 2017-06-29 15:49:48 +03:00
parent 19174a8cb1
commit c50c27eecb

View file

@ -34,7 +34,7 @@ class Sorted extends AbstractRule
|| (!$this->ascending && ($this->fn)($input[$i]) > ($this->fn)($input[$i - 1]))
) {
return false;
};
}
}
return true;
}