Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/psr-2_compliance' of git://github.com/RWOverdijk…
Browse files Browse the repository at this point in the history
…/zf2 into RWOverdijk-hotfix/psr-2_compliance
  • Loading branch information
Ralph Schindler committed Aug 13, 2012
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public static function dump($var, $label=null, $echo=true)
. PHP_EOL . $output
. PHP_EOL;
} else {
if(!extension_loaded('xdebug')) {
if (!extension_loaded('xdebug')) {
$output = htmlspecialchars($output, ENT_QUOTES);
}

Expand Down
2 changes: 1 addition & 1 deletion test/DebugTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function testDebugDumpLabel()
*/
public function testXdebugEnabledAndNonCliSapiDoesNotEscapeSpecialChars()
{
if(!extension_loaded('xdebug')) {
if (!extension_loaded('xdebug')) {
$this->markTestSkipped("This test only works in combination with xdebug.");
}

Expand Down

0 comments on commit 82fd41c

Please sign in to comment.