Skip to content

Instantly share code, notes, and snippets.

@brense
Last active August 29, 2015 14:22
Show Gist options
  • Save brense/4377cdacc451b41aef83 to your computer and use it in GitHub Desktop.
Save brense/4377cdacc451b41aef83 to your computer and use it in GitHub Desktop.
<?php
namespace application\commands;
use application\models\Request as Request;
abstract class AbstractCommand {
public function __construct(){}
abstract public function execute(Request $request);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment