17 lines
334 B
PHP
17 lines
334 B
PHP
<?php
|
|
|
|
// https://github.com/nextcloud/server/blob/master/apps/files/lib/Event/LoadAdditionalScriptsEvent.php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\Files\Event;
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
/**
|
|
* This event is triggered when the files app is rendered.
|
|
*
|
|
* @since 17.0.0
|
|
*/
|
|
class LoadAdditionalScriptsEvent extends Event {}
|