芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/midiatech/vendor/robmorgan/phinx/src/Phinx/Config/ConfigInterface.php
null if no environments exist. * * @return array|null */ public function getEnvironments(); /** * Returns the configuration for a given environment. * * This method returns
null
if the specified environment * doesn't exist. * * @param string $name * @return array|null */ public function getEnvironment($name); /** * Does the specified environment exist in the configuration file? * * @param string $name Environment Name * @return bool */ public function hasEnvironment($name); /** * Gets the default environment name. * * @throws \RuntimeException * @return string */ public function getDefaultEnvironment(); /** * Get the aliased value from a supplied alias. * * @param string $alias * * @return string|null */ public function getAlias($alias); /** * Gets the config file path. * * @return string */ public function getConfigFilePath(); /** * Gets the paths to search for migration files. * * @return string[] */ public function getMigrationPaths(); /** * Gets the paths to search for seed files. * * @return string[] */ public function getSeedPaths(); /** * Get the template file name. * * @return string|false */ public function getTemplateFile(); /** * Get the template class name. * * @return string|false */ public function getTemplateClass(); /** * Get the version order. * * @return string */ public function getVersionOrder(); /** * Is version order creation time? * * @return bool */ public function isVersionOrderCreationTime(); /** * Gets the base class name for migrations. * * @param bool $dropNamespace Return the base migration class name without the namespace. * @return string */ public function getMigrationBaseClassName($dropNamespace = true); }