oc-adrema-plugin/support/FetchAllEvents.php

12 lines
163 B
PHP
Raw Normal View History

2024-02-01 01:58:40 +01:00
<?php
namespace Silva\Adrema\Support;
class FetchAllEvents
{
public function run(): ?array
{
2024-02-03 22:36:56 +01:00
return app(Proxy::class)->run('/api/form');
2024-02-01 01:58:40 +01:00
}
}