limits = $limits; $this->cgroup = $cgroup; $this->setLogger( new NullLogger() ); } /** * Instantiates a new Command * * @return Command */ public function create() { $command = new Command(); $command->setLogger( $this->logger ); return $command ->limits( $this->limits ) ->cgroup( $this->cgroup ); } }