?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/caldera-forms/vendor/pimple/pimple/ext/pimple/tests/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/caldera-forms/vendor/pimple/pimple/ext/pimple

?? Viewing: 019.phpt

--TEST--
Test register() returns static and is a fluent interface
--SKIPIF--
<?php if (!extension_loaded("pimple")) print "skip"; ?>
--FILE--
<?php

class Foo implements Pimple\ServiceProviderInterface
{
    public function register(Pimple\Container $p)
    {
    }
}

$p = new Pimple\Container();
var_dump($p === $p->register(new Foo));
--EXPECTF--
bool(true)


??

??