<?php
class ezcMailImapTransportOptions 
{
    public 
int $listLimit {
        
set {
            if ( 
$value ) {
                throw new 
ValueError"listLimit was set to <{$value}>, but must be >= 0" );
            }
        }
    }

    public function 
__construct( array $options = array() )
    {
        
$this->listLimit 0;
    }
}
?>