mirror of
https://github.com/php/php-src.git
synced 2026-03-30 04:02:19 +02:00
Both classes already have a count() method and are considered countable by \is_countable().
15 lines
269 B
PHP
15 lines
269 B
PHP
--TEST--
|
|
Test ResourceBundle implements Countable
|
|
--SKIPIF--
|
|
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
|
|
--FILE--
|
|
<?php
|
|
include "resourcebundle.inc";
|
|
|
|
$r = new ResourceBundle( 'es', BUNDLE );
|
|
|
|
var_dump($r instanceof Countable);
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|