Browse Source

Fixed some typo error on cache commands

Marc 11 years ago
parent
commit
c6b955c448
2 changed files with 2 additions and 2 deletions
  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
         $this
             ->getContainer()
             ->getContainer()
-            ->get('@gearman.cache.wrapper')
+            ->get('gearman.cache.wrapper')
             ->flush();
             ->flush();
     }
     }
 }
 }

+ 1 - 1
Command/GearmanCacheWarmupCommand.php

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