Skip to content

Commit

Permalink
Fix namespace for request method classes
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe.rosello committed May 23, 2018
1 parent be0488f commit 8357424
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Extension/ReCaptcha/RequestMethod/Post.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace EWZ\Bundle\RecaptchaBundle\ReCaptcha\RequestMethod;
namespace EWZ\Bundle\RecaptchaBundle\Extension\ReCaptcha\RequestMethod;

use ReCaptcha\RequestMethod;
use ReCaptcha\RequestParameters;
Expand Down
2 changes: 1 addition & 1 deletion src/Extension/ReCaptcha/RequestMethod/ProxyPost.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace EWZ\Bundle\RecaptchaBundle\ReCaptcha\RequestMethod;
namespace EWZ\Bundle\RecaptchaBundle\Extension\ReCaptcha\RequestMethod;

use ReCaptcha\RequestMethod;
use ReCaptcha\RequestParameters;
Expand Down
4 changes: 2 additions & 2 deletions src/Validator/Constraints/IsTrueValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace EWZ\Bundle\RecaptchaBundle\Validator\Constraints;

use EWZ\Bundle\RecaptchaBundle\ReCaptcha\RequestMethod\Post;
use EWZ\Bundle\RecaptchaBundle\ReCaptcha\RequestMethod\ProxyPost;
use EWZ\Bundle\RecaptchaBundle\Extension\ReCaptcha\RequestMethod\Post;
use EWZ\Bundle\RecaptchaBundle\Extension\ReCaptcha\RequestMethod\ProxyPost;
use ReCaptcha\ReCaptcha;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\Security\Core\Authorization\AuthorizationChecker;
Expand Down

0 comments on commit 8357424

Please sign in to comment.