mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-07-17 11:37:03 +08:00
* deps: add dshafik/bag * refactor: create Bag equivalents of Data classes * zap: nuke the ill-conceived PluginProps/ThemeProps * deps: remove spatie/laravel-data * fix: comment out ignoreErrors pattern * tweak: we don't use a baseline
14 lines
214 B
PHP
14 lines
214 B
PHP
<?php
|
|
|
|
namespace App\Values\WpOrg;
|
|
|
|
use Bag\Bag;
|
|
|
|
readonly class PageInfo extends Bag
|
|
{
|
|
public function __construct(
|
|
public int $page,
|
|
public int $pages,
|
|
public int $results,
|
|
) {}
|
|
}
|