Skip to content

Instantly share code, notes, and snippets.

@makasim
Created July 18, 2011 14:44
Show Gist options
  • Save makasim/1089716 to your computer and use it in GitHub Desktop.
Save makasim/1089716 to your computer and use it in GitHub Desktop.
wizard basic step
<?php
namespace Rj\Employer\AdWizard\Step;
abstract class BaseStep
{
abstract public function process();
abstract public function finished();
abstract public function getIdentifier();
abstract public function getTemplate();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment