Beispiel #1
0
 /**
  * Return whether or not the spam model is disabled.
  *
  * @param bool|null $value
  * @return bool
  */
 public static function disabled($value = null)
 {
     if ($value !== null) {
         self::$Disabled = $value;
     }
     return self::$Disabled;
 }