24 lines
435 B
PHP
24 lines
435 B
PHP
<?php
|
|
|
|
namespace App\Message;
|
|
|
|
final class RefreshAndDownloadChapters
|
|
{
|
|
/*
|
|
* Add whatever properties and methods you need
|
|
* to hold the data for this message class.
|
|
*/
|
|
|
|
// private $name;
|
|
|
|
// public function __construct(string $name)
|
|
// {
|
|
// $this->name = $name;
|
|
// }
|
|
|
|
// public function getName(): string
|
|
// {
|
|
// return $this->name;
|
|
// }
|
|
}
|