Ejemplo n.º 1
0
 /**
  * Set search locations
  *
  * @static
  * @access    public
  * @param    array $value
  * @throws    PHPExcel_Reader_Exception
  */
 public static function setSearchLocations($value)
 {
     if (is_array($value)) {
         self::$searchLocations = $value;
     } else {
         throw new PHPExcel_Reader_Exception('Invalid parameter passed.');
     }
 }