* @copyright 2014 Elod Csirmaz * @license http://www.php.net/license/3_0.txt PHP License 3.0 * @version 1.0 * @link http://pear.php.net/package/PHP_Beautifier * @link http://beautifyphp.sourceforge.net */ /** * Add space before operator+assignments * * @category PHP * @package PHP_Beautifier * @subpackage Filter * @author Elod Csirmaz * @copyright 2014 Elod Csirmaz * @license http://www.php.net/license/3_0.txt PHP License 3.0 * @version 1.0 * @link http://pear.php.net/package/PHP_Beautifier * @link http://beautifyphp.sourceforge.net */ class PHP_Beautifier_Filter_SpaceOpAssignments extends PHP_Beautifier_Filter { protected $sDescription = 'Add space before operator+assignments'; /** * t_assigment_pre * * @param mixed $sTag The tag to be processed * * @access public * @return void */ function t_assigment_pre($sTag) { $this->oBeaut->removeWhitespace(); $this->oBeaut->add(' ' . $sTag . ' '); } } ?>