Explorar el Código

Fixed some typo error on cache commands

Marc hace 11 años
padre
commit
c6b955c448
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      Command/GearmanCacheClearCommand.php
  2. 1 1
      Command/GearmanCacheWarmupCommand.php

+ 1 - 1
Command/GearmanCacheClearCommand.php

@@ -56,7 +56,7 @@ class GearmanCacheClearCommand extends ContainerAwareCommand
 
         $this
             ->getContainer()
-            ->get('@gearman.cache.wrapper')
+            ->get('gearman.cache.wrapper')
             ->flush();
     }
 }

+ 1 - 1
Command/GearmanCacheWarmupCommand.php

@@ -56,7 +56,7 @@ class GearmanCacheWarmupCommand extends ContainerAwareCommand
 
         $this
             ->getContainer()
-            ->get('@gearman.cache.wrapper')
+            ->get('gearman.cache.wrapper')
             ->flush()
             ->load();
     }