for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TechDivision\Import\Cli\Console\ArgvInput
*
* PHP version 7
* @author Tim Wagner <[email protected]>
* @copyright 2016 TechDivision GmbH <[email protected]>
* @license https://opensource.org/licenses/MIT
* @link https://github.com/techdivision/import-cli-simple
* @link http://www.techdivision.com
*/
namespace TechDivision\Import\Cli\Console;
* Utility class containing the available visibility keys.
class ArgvInput extends \Symfony\Component\Console\Input\ArgvInput
{
* Queries whether or not, a option value HAS been specified on command line.
* @param string $name The option name to be queried
* @return boolean TRUE if the option has been specified, else FALSE
public function hasOptionSpecified($name)
return isset($this->options[$name]);
}