Completed
Pull Request — master (#213)
by
unknown
05:47
created
lib/Doctrine/Annotations/AnnotationReader.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -162,15 +162,15 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.