Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@davefreiman
Created February 1, 2015 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davefreiman/e949ae6bb85d00c10dc7 to your computer and use it in GitHub Desktop.
Save davefreiman/e949ae6bb85d00c10dc7 to your computer and use it in GitHub Desktop.
<?php
require_once 'abstract.php';
class Mage_Shell_DataflowExport extends Mage_Shell_Abstract
{
public function run() {
echo 'run!';
}
}
$shell = new Mage_Shell_DataflowExport();
$shell->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment