mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 11:33:17 +00:00
14 lines
190 B
PHP
14 lines
190 B
PHP
<?php
|
|
|
|
interface patchInterface
|
|
{
|
|
|
|
public function get_release();
|
|
|
|
public function concern();
|
|
|
|
public function require_all_upgrades();
|
|
|
|
public function apply(base &$base);
|
|
}
|