Created
June 14, 2012 10:41
-
-
Save coreymcmahon/2929534 to your computer and use it in GitHub Desktop.
Using namespacing in the Simplex framework - http://www.symfonycentral.com
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 | |
namespace Simplex; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\HttpFoundation\Response; | |
use Symfony\Component\Routing\Matcher\UrlMatcher; | |
use Symfony\Component\Routing\Exception\ResourceNotFoundException; | |
use Symfony\Component\HttpKernel\Controller\ControllerResolver; | |
class Framework | |
{ | |
// ... framework code in here | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment