Skip to content

Commit c7d3c02

Browse files
committed
ignore signatures for packages too
1 parent c2e197e commit c7d3c02

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
*.tgz
2020
*.tar.gz
2121
*.tar.bz2
22+
*.tar.gz.asc
23+
*.tar.bz2.asc
2224
.FBCIndex
2325
.FBCLockFolder
2426
.deps

ext/spl/tests/bug70168.phpt

+20-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,26 @@ for($i = 0; $i < 5; $i++) {
1111
$v[$i] = 'hi'.$i;
1212
}
1313

14-
var_dump($data[1]);
14+
var_dump($data);
1515
?>
1616
===DONE===
17-
--EXPECT--
18-
int(1)
17+
--EXPECTF--
18+
array(2) {
19+
[0]=>
20+
object(SplObjectStorage)#%d (1) {
21+
["storage":"SplObjectStorage":private]=>
22+
array(1) {
23+
["%s"]=>
24+
array(2) {
25+
["obj"]=>
26+
object(stdClass)#2 (0) {
27+
}
28+
["inf"]=>
29+
NULL
30+
}
31+
}
32+
}
33+
[1]=>
34+
int(1)
35+
}
1936
===DONE===

0 commit comments

Comments
 (0)