Skip to content

Commit 495fb0c

Browse files
fix: typo in pager default_simple
1 parent 072318c commit 495fb0c

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

phpstan-baseline.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2491,11 +2491,6 @@
24912491
'count' => 1,
24922492
'path' => __DIR__ . '/system/Pager/Pager.php',
24932493
];
2494-
$ignoreErrors[] = [
2495-
'message' => '#^Call to method CodeIgniter\\\\Pager\\\\PagerRenderer\\:\\:getNext\\(\\) with incorrect case\\: getnext$#',
2496-
'count' => 1,
2497-
'path' => __DIR__ . '/system/Pager/Views/default_simple.php',
2498-
];
24992494
$ignoreErrors[] = [
25002495
'message' => '#^Argument \\#1 \\$name \\(class\\-string\\) passed to function model does not extend CodeIgniter\\\\\\\\Model\\.$#',
25012496
'count' => 1,

system/Pager/Views/default_simple.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</a>
1616
</li>
1717
<li <?= $pager->hasNext() ? '' : 'class="disabled"' ?>>
18-
<a href="<?= $pager->getnext() ?? '#' ?>" aria-label="<?= lang('Pager.next') ?>">
18+
<a href="<?= $pager->getNext() ?? '#' ?>" aria-label="<?= lang('Pager.next') ?>">
1919
<span aria-hidden="true"><?= lang('Pager.older') ?></span>
2020
</a>
2121
</li>

0 commit comments

Comments
 (0)