aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/exception/MWExceptionHandlerTest.php
diff options
context:
space:
mode:
authorumherirrender <umherirrender_de.wp@web.de>2014-07-21 14:47:42 +0200
committerumherirrender <umherirrender_de.wp@web.de>2014-07-24 11:53:04 +0200
commit4ee680a8b36a5ea9f97dbb349b45cbcbca492384 (patch)
tree173bc6dff49ae7a3e922d069e66204e12b458244 /tests/phpunit/includes/exception/MWExceptionHandlerTest.php
parentd1d6cb7bc3a134cfd153ed7eb9fcdafa5c1fd193 (diff)
downloadmediawikicore-4ee680a8b36a5ea9f97dbb349b45cbcbca492384.tar.gz
mediawikicore-4ee680a8b36a5ea9f97dbb349b45cbcbca492384.zip
Fixed spacing
- Removed spaces after not operator (!) - Removed spaces inside array index - use tab as indent instead of spaces - Add newline at end of file - Removed spaces after casts Change-Id: I9ba17c4385fcb43d38998d45f89cf42952bc791b
Diffstat (limited to 'tests/phpunit/includes/exception/MWExceptionHandlerTest.php')
-rw-r--r--tests/phpunit/includes/exception/MWExceptionHandlerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit/includes/exception/MWExceptionHandlerTest.php b/tests/phpunit/includes/exception/MWExceptionHandlerTest.php
index 2eb1c46e7a54..dc5dc6aa32c4 100644
--- a/tests/phpunit/includes/exception/MWExceptionHandlerTest.php
+++ b/tests/phpunit/includes/exception/MWExceptionHandlerTest.php
@@ -27,7 +27,7 @@ class MWExceptionHandlerTest extends MediaWikiTestCase {
$hasObject = false;
$hasArray = false;
foreach ( $trace as $frame ) {
- if ( ! isset( $frame['args'] ) ) {
+ if ( !isset( $frame['args'] ) ) {
continue;
}
foreach ( $frame['args'] as $arg ) {
@@ -49,7 +49,7 @@ class MWExceptionHandlerTest extends MediaWikiTestCase {
$redacted = MWExceptionHandler::getRedactedTrace( $e );
foreach ( $redacted as $frame ) {
- if ( ! isset( $frame['args'] ) ) {
+ if ( !isset( $frame['args'] ) ) {
continue;
}
foreach ( $frame['args'] as $arg ) {