| 1 | <?php |
||
| 25 | class QuoteManager extends AbstractManager { |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Service name. |
||
| 29 | * |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | const SERVICE_NAME = "webeweb.core.manager.quote"; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritDoc} |
||
| 36 | */ |
||
| 37 | public function contains(ProviderInterface $provider) { |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Register a quote provider. |
||
| 55 | * |
||
| 56 | * @param QuoteProviderInterface $quoteProvider The quote provider. |
||
| 57 | * @return ManagerInterface Returns this manager. |
||
| 58 | * @throws AlreadyRegisteredProviderException Throws an already registered provider exception. |
||
| 59 | * @throws ReflectionException Throws a reflection exception if an error occurs. |
||
| 60 | */ |
||
| 61 | public function registerProvider(QuoteProviderInterface $quoteProvider) { |
||
| 67 | } |
||
| 68 |