mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 05:42:19 +08:00
19 lines
292 B
PHP
Executable File
19 lines
292 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
class RenderingHeader extends Event
|
|
{
|
|
public $contents;
|
|
|
|
public function __construct(array &$contents)
|
|
{
|
|
$this->contents = &$contents;
|
|
}
|
|
|
|
public function addContent(string $content)
|
|
{
|
|
$this->contents[] = $content;
|
|
}
|
|
}
|