Skip to content
Snippets Groups Projects
Select Git revision
  • 7fd71bdb517a13e39577bae7bb80ae3e4062ba6c
  • master default protected
  • Legacy_Php7
3 results

projectlist.class.php

Blame
  • build.interface.php 434 B
    <?php
    /**
     * INTERFACE for rollout plugins
     * 
     * @author hahn
     */
    interface iBuildplugin
    {
    
        /**
         * Get an array of commands to check requirements 
         * if the plugin is able to work
         * @return array
         */
        public function checkRequirements(): array;
    
        /**
         * Get an array with shell commands to execute
         * @return array
         */
        public function getBuildCommands(): array;
    
    }