public function memoryLimit()
 {
     if ($this->hasOption('memory-limit')) {
         return parent::memoryLimit();
     }
     return '1000M';
 }
Пример #2
0
	public function memoryLimit() {
		if ( $this->hasOption( 'memory-limit' ) ) {
			return parent::memoryLimit();
		}
		// Don't eat all memory on the machine if we get a bad job.
		return "150M";
	}