mirror of
https://github.com/flarum/core.git
synced 2025-10-13 16:05:05 +02:00
9 lines
150 B
PHP
9 lines
150 B
PHP
<?php namespace Flarum\Extend;
|
|
|
|
use Illuminate\Foundation\Application;
|
|
|
|
interface ExtenderInterface
|
|
{
|
|
public function extend(Application $app);
|
|
}
|