PHP code example of kumatch / launcher

1. Go to this page and download the library: Download kumatch/launcher 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/ */

    

kumatch / launcher example snippets




use Kumatch\Launcher;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;

$container = new ContainerBuilder();
$loader = new YamlFileLoader($container, new FileLocator());
$loader->load('/path/to/services.yml');

$service = $container->get('myapp_service'); // basic usage for DependencyInjection Container

$launcher = Launcher::createMethodLauncher($container);

$service = $launcher->getMyappService();  // gets service by specific method.

$launcher = Launcher::createPropertyLauncher($container);

$service = $launcher->MyappService;  // gets service by specific property.