| 1 | <?php |
||
| 10 | class ElasticsearchServiceProvider implements ServiceProviderInterface |
||
| 11 | { |
||
| 12 | protected $prefix; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param string $prefix Prefix name used to register the service in Silex. |
||
| 16 | */ |
||
| 17 | public function __construct($prefix = 'elasticsearch') |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function register(Application $app) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | * @codeCoverageIgnore |
||
| 47 | */ |
||
| 48 | public function boot(Application $app) |
||
| 51 | } |
||
| 52 |