Skip to content
Snippets Groups Projects
Select Git revision
  • 37270da56ae887aedb729066e261d0d447af16d9
  • master default protected
  • simple-task/7248-eol-check-add-node-22
  • 6877_check_iml_deployment
4 results

autodetect-mysqlany

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;
    
    }