Skip to content

Commit

Permalink
Move extension to main namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dpolac committed May 5, 2016
1 parent 05c14dd commit fd2e572
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Extension/LambdaExtension.php → LambdaExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* file that was distributed with this source code.
*/

namespace DPolac\TwigLambda\Extension;
namespace DPolac\TwigLambda;

use Underscore\Types\Arrays;

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ composer require dpolac/twig-lambda

### Add the extension to Twig:
```php
$twig->addExtension(new \DPolac\TwigLambda\Extension\LambdaExtension());
$twig->addExtension(new \DPolac\TwigLambda\LambdaExtension());
```

----------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion Tests/IntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace DPolac\TwigLambda\Tests;

use DPolac\TwigLambda\Extension\LambdaExtension;
use DPolac\TwigLambda\LambdaExtension;

class IntegrationTest extends \Twig_Test_IntegrationTestCase
{
Expand Down

0 comments on commit fd2e572

Please sign in to comment.