This class seems to be duplicated in your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate
the same code in three or more different places, we strongly encourage you to
look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.
Loading history...
14
{
15
protected $_projectPath;
16
17
protected function configure()
18
{
19
$this->_projectPath = getcwd();
20
21
$this->setName("behat");
22
$this->setDescription("Run Behat against your project");
23
$this->addArgument('option', InputArgument::OPTIONAL, 'Add options to run');
24
}
25
26
/**
27
* @param InputInterface $input
28
* @param OutputInterface $output
29
* @return mixed
30
*/
31
protected function execute(InputInterface $input, OutputInterface $output)
The property type does not seem to exist in Magestead\Helper\Config.
An attempt at access to an undefined property has been detected. This may either be a typographical error
or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods
to allow access. See the php core documentation on Overloading.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.