We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fd6953 commit 7fda196Copy full SHA for 7fda196
extension.neon
@@ -15,6 +15,7 @@ parameters:
15
- stubs/Routing/Router.stub
16
- stubs/Utils/ArrayHash.stub
17
- stubs/Utils/Html.stub
18
+ - stubs/Utils/Paginator.stub
19
universalObjectCratesClasses:
20
- Nette\Application\UI\ITemplate
21
- Nette\Application\UI\Template
stubs/Utils/Paginator.stub
@@ -0,0 +1,23 @@
1
+<?php
2
+
3
+namespace Nette\Utils;
4
5
+class Paginator
6
+{
7
8
+ /**
9
+ * @phpstan-return positive-int|0
10
+ */
11
+ public function getOffset(): int
12
+ {
13
+ // nothing
14
+ }
+ public function getItemsPerPage(): int
22
23
+}
0 commit comments