mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 11:03:17 +00:00
16 lines
241 B
PHP
16 lines
241 B
PHP
<?php
|
|
|
|
use Alchemy\Phrasea\Application;
|
|
|
|
interface patchInterface
|
|
{
|
|
|
|
public function get_release();
|
|
|
|
public function concern();
|
|
|
|
public function require_all_upgrades();
|
|
|
|
public function apply(base $base, Application $app);
|
|
}
|