20 lines
580 B
PHP
20 lines
580 B
PHP
<?php
|
|
/**
|
|
* Helper autocomplete for php solr extension.
|
|
*
|
|
* @author Pierre-Julien Mazenot <pj.mazenot@gmail.com>
|
|
* @link https://github.com/pjmazenot/phpsolr-phpdoc
|
|
*/
|
|
|
|
/*
|
|
* Solr Predefined Constants
|
|
* The constants below are defined by this extension, and will only be available when the extension has either been
|
|
* compiled into PHP or dynamically loaded at runtime.
|
|
* @link https://php.net/manual/en/solr.constants.php
|
|
*/
|
|
|
|
define('SOLR_MAJOR_VERSION', 2);
|
|
define('SOLR_MINOR_VERSION', 4);
|
|
define('SOLR_PATCH_VERSION', 0);
|
|
define('SOLR_EXTENSION_VERSION', '2.4.0');
|