소스 검색

Fixed some typo error on cache commands

Marc 11 년 전
부모
커밋
c6b955c448
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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();
     }