Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Sean Flanagan
33,234 PointsRouting in Slim, Task 1
Hi. Is there any reason why this won't pass?
<?php
require 'Slim.php';
$app = new \Slim\Slim();
/* add your code below this line */
$app->get('/hello', function(), use($app) {
$app->render('index.php')
});
/* add your code above this line */
$app->run();
Thanks.
1 Answer

Jason Anders
Treehouse Moderator 145,692 PointsHey Sean,
There are just a couple things:
First, there is a comma after function()
that shouldn't be there.
Second, you added more than what this part of the challenge asked for. If you delete everything in-between the curly braces, then you're good to go.
Below is the corrected code needed for part one.
$app->get('/hello', function() use($app) {
});
Keep Coding! :)
Sean Flanagan
33,234 PointsSean Flanagan
33,234 PointsHi Jason. I see now where I went overboard. I did as you said and it worked perfectly. I've given your reply an up vote and Best Answer. Thank you. :)