PHP code example of palmtree / container

1. Go to this page and download the library: Download palmtree/container library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

palmtree / container example snippets



use Palmtree\Container\ContainerFactory;

$container = ContainerFactory::create('config.yml');

$container->get('my_service')->myMethod();

$container->getParameter('db_username');


$container->get('my_service');


namespace MyNamespace;

class MyConsumer {
    public function __construct(MyService $myService) {
    }
}