ソースを参照

Fixed some typo error on cache commands

Marc 11 年 前
コミット
c6b955c448

+ 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();
     }