@@ -162,15 +162,15 @@ |
||
| 162 | 162 | */ |
| 163 | 163 | public function __construct(DocParser $parser = null) |
| 164 | 164 | { |
| 165 | - if (extension_loaded('Zend Optimizer+') && |
|
| 166 | - function_exists('ini_get') && |
|
| 167 | - (ini_get('zend_optimizerplus.save_comments') === "0" || ini_get('opcache.save_comments') === "0")) { |
|
| 165 | + if (extension_loaded('Zend Optimizer+') && |
|
| 166 | + function_exists('ini_get') && |
|
| 167 | + (ini_get('zend_optimizerplus.save_comments') === "0" || ini_get('opcache.save_comments') === "0")) { |
|
| 168 | 168 | throw AnnotationException::optimizerPlusSaveComments(); |
| 169 | 169 | } |
| 170 | 170 | |
| 171 | - if (extension_loaded('Zend OPcache') && |
|
| 172 | - function_exists('ini_get') && |
|
| 173 | - ini_get('opcache.save_comments') == 0) { |
|
| 171 | + if (extension_loaded('Zend OPcache') && |
|
| 172 | + function_exists('ini_get') && |
|
| 173 | + ini_get('opcache.save_comments') == 0) { |
|
| 174 | 174 | throw AnnotationException::optimizerPlusSaveComments(); |
| 175 | 175 | } |
| 176 | 176 | |