ICanBoogie/ICanBoogie 4.0.x
  • Namespace
  • Class

Namespaces

  • ICanBoogie
    • Application
    • Autoconfig
    • Binding
    • Routing
    • Session

Classes

  • AutoconfigGenerator
  • FakeAutoloadGenerator
  • Hooks
  • Schema

Interfaces

  • Autoconfig
 1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 
<?php

/*
 * This file is part of the ICanBoogie package.
 *
 * (c) Olivier Laviale <olivier.laviale@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace ICanBoogie\Autoconfig;

interface Autoconfig
{
    const APP_ROOT = 'app-root';
    const APP_PATHS = 'app-paths';
    const AUTOCONFIG_FILTERS = 'autoconfig-filters';
    const CONFIG_CONSTRUCTOR = 'config-constructor';
    const CONFIG_PATH = 'config-path';
    const LOCALE_PATH = 'locale-path';
    const MODULE_PATH = 'module-path';
    const CONFIG_WEIGHT = 'config-weight';
    const CONFIG_WEIGHT_FRAMEWORK = -100;
    const CONFIG_WEIGHT_MODULE = 0;
    const CONFIG_WEIGHT_APP = 100;
    const ROOT = 'root';

    const DEFAULT_APP_ROOT = 'app';
}
ICanBoogie/ICanBoogie 4.0.x API documentation generated by ApiGen