/var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Config
NameSizeModeActions
Config.php141260644editdlrm
ConfigInterface.php33510644editdlrm
NamespaceAwareInterface.php6940644editdlrm
NamespaceAwareTrait.php16810644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Config/ConfigInterface.php (3351B)
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 Environment 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 Alias * * @return string|null */ public function getAlias($alias); /** * Get all the aliased values. * * @return string[] */ public function getAliases(); /** * 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 user-provided container for instantiating seeds * * @return \Psr\Container\ContainerInterface|null */ public function getContainer(); /** * Get the data domain array. * * @return array */ public function getDataDomain(); /** * Get the version order. * * @return string */ public function getVersionOrder(); /** * Is version order creation time? * * @return bool */ public function isVersionOrderCreationTime(); /** * Get the bootstrap file path * * @return string|false */ public function getBootstrapFile(); /** * 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); /** * Gets the base class name for seeders. * * @param bool $dropNamespace Return the base seeder class name without the namespace. * @return string */ public function getSeedBaseClassName($dropNamespace = true); }