mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 03:23:19 +00:00
13 lines
153 B
PHP
13 lines
153 B
PHP
<?php
|
|
|
|
interface patchInterface
|
|
{
|
|
function get_release();
|
|
|
|
function concern();
|
|
|
|
function require_all_upgrades();
|
|
|
|
function apply(base &$base);
|
|
}
|