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

check_ssl

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