for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kunstmaan\TranslatorBundle\Model\Import;
class ImportCommand
{
private $defaultBundle = false;
private $bundles = array();
private $globals = true;
private $force = false;
private $locales = false;
public function getDefaultBundle()
return $this->defaultBundle;
}
public function setDefaultBundle($defaultBundle)
$this->defaultBundle = $defaultBundle;
return $this;
public function getBundles()
return $this->bundles;
public function setBundles($bundles)
$this->bundles = $bundles;
public function getGlobals()
return $this->globals;
public function setGlobals($globals)
$this->globals = $globals;
public function getForce()
return $this->force;
public function setForce($force)
$this->force = $force;
public function getLocales()
return $this->locales;
public function setLocales($locales)
$this->locales = $locales;