1
0
mirror of https://github.com/flarum/core.git synced 2025-10-14 08:24:28 +02:00

New object-based extension APIs

This commit is contained in:
Toby Zerner
2015-05-17 10:19:54 +09:30
parent 8e6adb9be0
commit a577910d04
15 changed files with 322 additions and 81 deletions

View File

@@ -0,0 +1,8 @@
<?php namespace Flarum\Extend;
use Illuminate\Foundation\Application;
interface ExtenderInterface
{
public function extend(Application $app);
}