mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 20:25:05 +02:00
* feat: add playlist resources * style: fix StyleCI findings * fix(admin): address nova exceptions
21 lines
303 B
PHP
21 lines
303 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Api\Query;
|
|
|
|
/**
|
|
* Class WriteQuery.
|
|
*/
|
|
abstract class WriteQuery
|
|
{
|
|
/**
|
|
* Create a new query instance.
|
|
*
|
|
* @param array $parameters
|
|
*/
|
|
public function __construct(protected readonly array $parameters = [])
|
|
{
|
|
}
|
|
}
|