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