Skip to content

Instantly share code, notes, and snippets.

@RusAlex
Created September 28, 2017 09:44
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 RusAlex/baf97b94f5a43ad8bf2b8a4551c9bf89 to your computer and use it in GitHub Desktop.
Save RusAlex/baf97b94f5a43ad8bf2b8a4551c9bf89 to your computer and use it in GitHub Desktop.
<?php
require 'vendor/autoload.php';
use \App\TestController;
$x = new TestController;
$app = new \Slim\App;
$app->get('/hello/{name}', \App\TestController::class.':testAction');
$app->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment