PHP code example of pixelfederation / phystrix-bundle
1. Go to this page and download the library: Download pixelfederation/phystrix-bundle 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/ */
pixelfederation / phystrix-bundle example snippets
$container->get('phystrix.service_locator')->set('somekey', $somevalue);
$command = $container->get('phystrix.command_factory')->getCommand('MyCommand', $parameter1, $parameter2);
$command->execute();
php
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new Odesk\Bundle\PhystrixBundle\OdeskPhystrixBundle()
// ...
);
}
}