Skip to content

Commit

Permalink
Fixed a few coding standard errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gsherwood committed Jan 25, 2012
1 parent a227646 commit e62846c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CodeSniffer/Reports/Checkstyle.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function generate(
$out = new XMLWriter;
$out->openMemory();
$out->setIndent(true);
$out->startDocument('1.0', 'UTF-8' );
$out->startDocument('1.0', 'UTF-8');
$out->startElement('checkstyle');
$out->writeAttribute('version', '@package_version@');

Expand Down
2 changes: 1 addition & 1 deletion CodeSniffer/Reports/Xml.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function generate(
$out = new XMLWriter;
$out->openMemory();
$out->setIndent(true);
$out->startDocument('1.0', 'UTF-8' );
$out->startDocument('1.0', 'UTF-8');
$out->startElement('phpcs');
$out->writeAttribute('version', '@package_version@');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @category PHP
* @package PHP_CodeSniffer
* @author Greg Sherwood <gsherwood@squiz.net>
* @author Sam Graham <php-codesniffer BLAHBLAH illusori.co.uk>
* @author Sam Graham <php-codesniffer@illusori.co.uk>
* @copyright 2006-2011 Squiz Pty Ltd (ABN 77 084 670 600)
* @license http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
Expand All @@ -21,7 +21,7 @@
* @category PHP
* @package PHP_CodeSniffer
* @author Greg Sherwood <gsherwood@squiz.net>
* @author Sam Graham <php-codesniffer BLAHBLAH illusori.co.uk>
* @author Sam Graham <php-codesniffer@illusori.co.uk>
* @copyright 2006-2011 Squiz Pty Ltd (ABN 77 084 670 600)
* @license http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
* @version Release: @package_version@
Expand Down

0 comments on commit e62846c

Please sign in to comment.