<?php
// Send back the code all nice and pretty
<?php
$code = preg_replace_callback('#( )+#', array($this, 'deleteNbsp'), $code);
<?php
}
?>
<?php
private function deleteNbsp($text)
{
return (strlen($text[0]) < 7) ? ' ' : $text[0];
}