Created
September 28, 2017 09:44
-
-
Save RusAlex/baf97b94f5a43ad8bf2b8a4551c9bf89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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