AspireCloud/app/Values/WpOrg/PageInfo.php
Chuck Adams e380b0e815
Replace spatie/laravel-data with dshafik/bag (#218)
* 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
2025-03-31 19:28:42 -06:00

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,
) {}
}