0 follower

Final Class Yiisoft\Data\Paginator\PageToken

InheritanceYiisoft\Data\Paginator\PageToken

Property Details

Hide inherited properties

$isPrevious public property
public boolean $isPrevious null
$value public property
public string $value null

Method Details

Hide inherited methods

next() public static method

public static self next ( string $value )
$value string

                public static function next(string $value): self
{
    return new self($value, false);
}

            
previous() public static method

public static self previous ( string $value )
$value string

                public static function previous(string $value): self
{
    return new self($value, true);
}