Pārlūkot izejas kodu

Fixing some coding style and comments

Fixing PR #49
Marc 11 gadi atpakaļ
vecāks
revīzija
f87e20bc37
1 mainītis faili ar 4 papildinājumiem un 2 dzēšanām
  1. 4 2
      Service/GearmanCacheWrapper.php

+ 4 - 2
Service/GearmanCacheWrapper.php

@@ -263,9 +263,11 @@ class GearmanCacheWrapper
         foreach ($finder as $file) {
             
             /**
-             * File is checked to be parsed
+             * File is checked to be parsed. Is just parsed if is a php file
+             * Otherwise, jump to next file
              */
-            if('php' !== strtolower($file->getExtension())) {
+            if ('php' !== strtolower($file->getExtension())) {
+                
                 continue;
             }