Skip to content

Commit

Permalink
Fixed some typo error on cache commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoreram committed Aug 31, 2013
1 parent 73c43b5 commit c6b955c
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Command/GearmanCacheClearCommand.php
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ protected function execute(InputInterface $input, OutputInterface $output)

$this
->getContainer()
->get('@gearman.cache.wrapper')
->get('gearman.cache.wrapper')
->flush();
}
}
2 changes: 1 addition & 1 deletion Command/GearmanCacheWarmupCommand.php
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ protected function execute(InputInterface $input, OutputInterface $output)

$this
->getContainer()
->get('@gearman.cache.wrapper')
->get('gearman.cache.wrapper')
->flush()
->load();
}

0 comments on commit c6b955c

Please sign in to comment.