예제 #1
0
파일: IOFactory.php 프로젝트: sensorsix/app
 /**
  * Set search locations
  * 
  * @param array $value
  * @throws Exception
  */
 public static function setSearchLocations($value)
 {
     if (is_array($value)) {
         self::$_searchLocations = $value;
     } else {
         throw new Exception('Invalid parameter passed.');
     }
 }