Author: Hugo Briand (briand@ekino.com)
Inheritance: extends Sonata\CoreBundle\Model\ManagerInterface
Example #1
0
 /**
  * Constructs the currency detector service by finding the default currency
  *
  * @param string                   $currencyLabel
  * @param CurrencyManagerInterface $currencyManager
  */
 public function __construct($currencyLabel, CurrencyManagerInterface $currencyManager)
 {
     $this->currency = $currencyManager->findOneByLabel($currencyLabel);
 }