예제 #1
0
파일: Facade.php 프로젝트: up9cloud/redbean
 /**
  * Toggles fluid or frozen mode. In fluid mode the database
  * structure is adjusted to accomodate your objects. In frozen mode
  * this is not the case.
  *
  * You can also pass an array containing a selection of frozen types.
  * Let's call this chilly mode, it's just like fluid mode except that
  * certain types (i.e. tables) aren't touched.
  *
  * @param boolean|array $trueFalse
  */
 public static function freeze($tf = TRUE)
 {
     self::$redbean->freeze($tf);
 }