mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
19 lines
247 B
PHP
19 lines
247 B
PHP
|
<?php
|
||
|
namespace App\Subscriber;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
class NodeMenuSubscriber extends AbstractEntityMenuSubscriber
|
||
|
{
|
||
|
public static function getSubscribedEvents()
|
||
|
{
|
||
|
return [
|
||
|
|
||
|
];
|
||
|
}
|
||
|
}
|
||
|
|