mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
31 lines
567 B
PHP
31 lines
567 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
class RenderingFooter extends Event
|
|
{
|
|
public $contents;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(array &$contents)
|
|
{
|
|
// pass array by reference
|
|
$this->contents = &$contents;
|
|
}
|
|
|
|
public function addContent($content)
|
|
{
|
|
if ($content) {
|
|
if (!is_string($content)) {
|
|
throw new \Exception("Can not add non-string content", 1);
|
|
}
|
|
|
|
$this->contents[] = $content;
|
|
}
|
|
}
|
|
}
|