Example #1
0
 /**
  * ALIAS OF dieObject() - Display an error with detailed object
  * (display in firefox console if Firephp is enabled)
  *
  * @param object $object Object to display
  */
 public static function d($obj, $kill = true)
 {
     if (PS_USE_FIREPHP) {
         FB::error($obj);
     } else {
         parent::d($obj, $kill);
     }
     if ($kill) {
         die('END');
     }
     return $object;
 }