Ejemplo n.º 1
0
 /**
  * The Distribution type
  * @param   string    $distribution The optional distribution type
  * @return  string                  The distribution type
  * @author      Reto Kohli <*****@*****.**>
  */
 function distribution($distribution = null)
 {
     if (isset($distribution)) {
         $this->distribution = Distribution::isDistributionType($distribution) ? $distribution : Distribution::getDefault();
     }
     return $this->distribution;
 }