mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-13 01:51:50 +01:00
Fix coding standard (no_blank_lines_after_phpdoc, single_blank_line_before_namespace, yoda_style)
This commit is contained in:
@@ -31,14 +31,14 @@ class Repository
|
||||
{
|
||||
$position = self::getExtremePosition($items, $asLast);
|
||||
|
||||
if ($position === null && $force) {
|
||||
if (null === $position && $force) {
|
||||
$position = 0;
|
||||
}
|
||||
|
||||
if ($position !== null && !empty($items)) {
|
||||
if (null !== $position && !empty($items)) {
|
||||
foreach ($items as $item) {
|
||||
if (method_exists($item, 'getPosition')) {
|
||||
if ($item->getPosition() === null) {
|
||||
if (null === $item->getPosition()) {
|
||||
if ($asLast) {
|
||||
++$position;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user