Source of file Decorator.php
Size: 0,408 Bytes - Last Modified: 2021-12-23T10:05:21+00:00
/var/www/docs.ssmods.com/process/src/src/Contracts/Decorator.php
12345678910111213141516 | <?php namespace Milkyway\SS\ZenForms\Contracts; /** * Milkyway Multimedia * Decorator.php * * For ease of use, the decorator should have magic methods set on it. * See the Traits included for some ideas on magic methods. * * @package milkyway-multimedia/ss-zen-forms * @author Mellisa Hankins <mell@milkywaymultimedia.com.au> * */ interface Decorator { function original(); function up(); } |