summaryrefslogtreecommitdiff
path: root/ext/phar/tests/bug64931
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-02-03 22:52:20 +0100
commitf8d795820e780a6322e054c26c581570613c14f0 (patch)
tree99d3ae01ce564752807341c5743863b4c92513f8 /ext/phar/tests/bug64931
parentd2cb200e10ada6fa44c54a29292bb4665728fff0 (diff)
downloadphp-git-f8d795820e780a6322e054c26c581570613c14f0.tar.gz
Reindent phpt files
Diffstat (limited to 'ext/phar/tests/bug64931')
-rw-r--r--ext/phar/tests/bug64931/bug64931.phpt20
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/phar/tests/bug64931/bug64931.phpt b/ext/phar/tests/bug64931/bug64931.phpt
index 0de8d43e78..6bf3bea7c3 100644
--- a/ext/phar/tests/bug64931/bug64931.phpt
+++ b/ext/phar/tests/bug64931/bug64931.phpt
@@ -13,33 +13,33 @@ echo "Test\n";
$phar = new Phar(__DIR__."/bug64931.phar");
$phar->addFile(__DIR__."/src/.pharignore", ".pharignore");
try {
- $phar->addFile(__DIR__."/src/.pharignore", ".phar/gotcha");
+ $phar->addFile(__DIR__."/src/.pharignore", ".phar/gotcha");
} catch (Exception $e) {
- echo "CAUGHT: ". $e->getMessage() ."\n";
+ echo "CAUGHT: ". $e->getMessage() ."\n";
}
try {
- $phar->addFromString(".phar", "gotcha");
+ $phar->addFromString(".phar", "gotcha");
} catch (Exception $e) {
- echo "CAUGHT: ". $e->getMessage() ."\n";
+ echo "CAUGHT: ". $e->getMessage() ."\n";
}
try {
- $phar->addFromString(".phar//", "gotcha");
+ $phar->addFromString(".phar//", "gotcha");
} catch (Exception $e) {
- echo "CAUGHT: ". $e->getMessage() ."\n";
+ echo "CAUGHT: ". $e->getMessage() ."\n";
}
try {
- $phar->addFromString(".phar\\", "gotcha");
+ $phar->addFromString(".phar\\", "gotcha");
} catch (Exception $e) {
- echo "CAUGHT: ". $e->getMessage() ."\n";
+ echo "CAUGHT: ". $e->getMessage() ."\n";
}
try {
- $phar->addFromString(".phar\0", "gotcha");
+ $phar->addFromString(".phar\0", "gotcha");
} catch (TypeError $e) {
- echo "CAUGHT: ". $e->getMessage() ."\n";
+ echo "CAUGHT: ". $e->getMessage() ."\n";
}
?>