framework/src/Extend/Compat.php
2020-03-17 22:37:17 +01:00

38 lines
889 B
PHP

<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\Extend;
use Flarum\Extension\Extension;
use Illuminate\Contracts\Container\Container;
/**
* This class is used to wrap old bootstrap.php closures (as used in versions up
* to 0.1.0-beta7) in the new Extender format.
*
* This gives extensions the chance to work with the new API without making any
* changes, and have some time to convert to the pure usage of extenders.
*
* @deprecated
*/
class Compat implements ExtenderInterface
{
private $callback;
public function __construct($callback)
{
$this->callback = $callback;
}
public function extend(Container $container, Extension $extension = null)
{
$container->call($this->callback);
}
}