Auth2FA/vendor/phpstan/phpstan-nette/stubs/Utils/Paginator.stub

24 lines
255 B
Plaintext

<?php
namespace Nette\Utils;
class Paginator
{
/**
* @phpstan-return positive-int|0
*/
public function getOffset(): int
{
// nothing
}
/**
* @phpstan-return positive-int|0
*/
public function getItemsPerPage(): int
{
// nothing
}
}