On Mon, 2008-10-27 at 09:28 +1030, Andrew Mason wrote:
> So can I just confirm that what was previously
> 
> <?php
> 
>               $x = new Framework::Utils::Foo();
>               $y = new Project::PEAR::Bar( 'somestring' );
> 
> 
> ?>
> 
> is now
> 
> <?php
> 
>               $x = new Framework\Utils\Foo();
>               $y = new Project\PEAR\Bar( 'somestring' );
> 
> ?>
> 
> 
> Is this correct ?

Wouldn't it be:

<?php

    $x = new Framework\Utils::Foo();
    $y = new Project\PEAR::Bar( 'somestring' );
?>

Cheers,
Rob.
-- 
http://www.interjinn.com
Application and Templating Framework for PHP


-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to