for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TechDivision\Import\Cli\Utils\DependencyInjectionKeys
*
* NOTICE OF LICENSE
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* PHP version 5
* @author Tim Wagner <[email protected]>
* @copyright 2016 TechDivision GmbH <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://github.com/techdivision/import-cli-simple
* @link http://www.techdivision.com
*/
namespace TechDivision\Import\Cli\Utils;
* A utility class for the DI service keys.
class DependencyInjectionKeys extends \TechDivision\Import\App\Utils\DependencyInjectionKeys
{
* The key for the input instance.
* @var string
const INPUT = 'input';
* The key for the output instance.
const OUTPUT = 'output';
* The key for the application instance.
const APPLICATION = 'import_cli_simple.application';
* The key for the simple configuration instance.
const CONFIGURATION_SIMPLE = 'configuration.simple';
* The key for the vendor directory.
const CONFIGURATION_VENDOR_DIR = 'import_cli_simple.configuration.vendor.dir';
}