mirror of
https://github.com/flarum/core.git
synced 2025-08-06 08:27:42 +02:00
feat: STUBS!
This commit is contained in:
23
php-packages/phpstan/stubs/Illuminate/Pagination.stub
Normal file
23
php-packages/phpstan/stubs/Illuminate/Pagination.stub
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Pagination;
|
||||
|
||||
/**
|
||||
* @mixin \Illuminate\Support\Collection
|
||||
*/
|
||||
abstract class AbstractPaginator implements \Illuminate\Contracts\Support\Htmlable
|
||||
{}
|
||||
|
||||
/**
|
||||
* @implements \ArrayAccess<mixed, mixed>
|
||||
* @implements \IteratorAggregate<mixed, mixed>
|
||||
*/
|
||||
class Paginator extends AbstractPaginator implements \Illuminate\Contracts\Support\Arrayable, \ArrayAccess, \Countable, \IteratorAggregate, \Illuminate\Contracts\Support\Jsonable, \JsonSerializable, \Illuminate\Contracts\Pagination\Paginator
|
||||
{}
|
||||
|
||||
/**
|
||||
* @implements \ArrayAccess<mixed, mixed>
|
||||
* @implements \IteratorAggregate<mixed, mixed>
|
||||
*/
|
||||
class LengthAwarePaginator extends AbstractPaginator implements \Illuminate\Contracts\Support\Arrayable, \ArrayAccess, \Countable, \IteratorAggregate, \Illuminate\Contracts\Support\Jsonable, \JsonSerializable, \Illuminate\Contracts\Pagination\LengthAwarePaginator
|
||||
{}
|
Reference in New Issue
Block a user