summaryrefslogtreecommitdiff
path: root/ext/spl/tests/heap_isempty_variation_001.phpt
blob: dac470fccfe32d25ecbf3796f46bc1e207667289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
SPL: SplHeap: isEmpty argument variation.
--FILE--
<?php
class SplHeap2 extends SplHeap{

  public function compare() {
           return -parent::compare();
       }
}

$h = new SplHeap2;
$h->isEmpty(1);
?>
--EXPECTF--
Warning: SplHeap::isEmpty() expects exactly 0 parameters, 1 given in %s