The property numParallelProcesses does not seem to exist. Did you mean processes?
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.
Loading history...
52
1
$this->verbose = $verbose;
53
1
$this->stop = $stop;
54
1
}
55
56
public function addProcess(Process $process)
57
{
58
$this->processes[] = $process;
59
}
60
61
public function wait()
62
{
63
if (count($this->processes) < $this->numParallelProcesses) {
The property numParallelProcesses does not seem to exist. Did you mean processes?
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.
This code seems to be duplicated across 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.
This check marks private properties in classes that are never used. Those properties can be removed.