diff --git a/Mage/Task/BuiltIn/Symfony/ClearCache.php b/Mage/Task/BuiltIn/Symfony/ClearCache.php new file mode 100644 index 0000000..c2523f2 --- /dev/null +++ b/Mage/Task/BuiltIn/Symfony/ClearCache.php @@ -0,0 +1,17 @@ +_runLocalCommand($command); + + return $result; + } +} \ No newline at end of file diff --git a/Mage/Task/BuiltIn/Symfony/Migrate.php b/Mage/Task/BuiltIn/Symfony/Migrate.php new file mode 100644 index 0000000..676b3a3 --- /dev/null +++ b/Mage/Task/BuiltIn/Symfony/Migrate.php @@ -0,0 +1,17 @@ +_runLocalCommand($command); + + return $result; + } +} \ No newline at end of file diff --git a/Mage/Task/BuiltIn/Symfony2/CacheClear.php b/Mage/Task/BuiltIn/Symfony2/CacheClear.php new file mode 100644 index 0000000..6fc0190 --- /dev/null +++ b/Mage/Task/BuiltIn/Symfony2/CacheClear.php @@ -0,0 +1,17 @@ +_runLocalCommand($command); + + return $result; + } +} \ No newline at end of file diff --git a/Mage/Task/BuiltIn/Symfony2/CacheWarmup.php b/Mage/Task/BuiltIn/Symfony2/CacheWarmup.php new file mode 100644 index 0000000..db11df6 --- /dev/null +++ b/Mage/Task/BuiltIn/Symfony2/CacheWarmup.php @@ -0,0 +1,20 @@ +_runLocalCommand($command); + + $command = 'app/console cache:warmup'; + $result = $result && $this->_runLocalCommand($command); + + return $result; + } +} \ No newline at end of file diff --git a/Mage/Task/BuiltIn/Symfony2/Migrate.php b/Mage/Task/BuiltIn/Symfony2/Migrate.php new file mode 100644 index 0000000..189a38c --- /dev/null +++ b/Mage/Task/BuiltIn/Symfony2/Migrate.php @@ -0,0 +1,17 @@ +_runLocalCommand($command); + + return $result; + } +} \ No newline at end of file