12 lines
138 B
PHP
12 lines
138 B
PHP
<?php
|
|
|
|
namespace Plugin\Test;
|
|
|
|
class Test
|
|
{
|
|
public function onTest(string $foo)
|
|
{
|
|
dump('Event handled: ' . $foo);
|
|
}
|
|
}
|